Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move src/tablib/packages/dbfpy to src/tablib/_vendor/dbfpy #570

Merged
merged 1 commit into from
Oct 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions src/tablib/formats/_dbf.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
import os
import tempfile

from ..packages.dbfpy import dbf, dbfnew
from ..packages.dbfpy import record as dbfrecord
from .._vendor.dbfpy import dbf, dbfnew
from .._vendor.dbfpy import record as dbfrecord


class DBFFormat:
Expand Down
4 changes: 2 additions & 2 deletions tests/test_tablib_dbfpy_packages_fields.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#!/usr/bin/env python
"""Tests for tablib.packages.dbfpy."""
"""Tests for tablib._vendor.dbfpy."""

import unittest

from tablib.packages.dbfpy import fields
from tablib._vendor.dbfpy import fields


class DbfFieldDefTestCompareCase(unittest.TestCase):
Expand Down
4 changes: 2 additions & 2 deletions tests/test_tablib_dbfpy_packages_utils.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#!/usr/bin/env python
"""Tests for tablib.packages.dbfpy."""
"""Tests for tablib._vendor.dbfpy."""

import datetime as dt
import unittest

from tablib.packages.dbfpy import utils
from tablib._vendor.dbfpy import utils


class UtilsUnzfillTestCase(unittest.TestCase):
Expand Down