diff --git a/.github/workflows/general.yml b/.github/workflows/general.yml index 4bcca14..44c0980 100644 --- a/.github/workflows/general.yml +++ b/.github/workflows/general.yml @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.6, 3.7, 3.8, 3.9] + python-version: [3.8, 3.9, '3.10', '3.11', '3.12'] steps: - name: Checkout repository uses: actions/checkout@v2 diff --git a/tableschema/helpers.py b/tableschema/helpers.py index e08182f..8b91583 100644 --- a/tableschema/helpers.py +++ b/tableschema/helpers.py @@ -133,6 +133,9 @@ def find_module(self, fullname, path=None): return self return None + def find_spec(self, fullname, path=None, target=None): + return self.find_module(fullname, path) + def load_module(self, fullname): if fullname in sys.modules: return sys.modules[fullname]