diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9caeed4..92c11bf 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -15,7 +15,7 @@ jobs: strategy: fail-fast: false matrix: - python_version: ["3.6", "3.9"] + python_version: ["3.7", "3.9", "3.10"] os: [ubuntu-latest, macos-latest, windows-latest] steps: @@ -23,7 +23,7 @@ jobs: uses: actions/checkout@v2 - name: Install Python - uses: actions/setup-python@v1 + uses: actions/setup-python@v2 with: python-version: ${{ matrix.python_version }} architecture: 'x64' diff --git a/setup.cfg b/setup.cfg index e94b415..554684a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -16,16 +16,16 @@ classifiers = Intended Audience :: Science/Research License :: OSI Approved :: BSD License Programming Language :: Python - Programming Language :: Python :: 3.6 Programming Language :: Python :: 3.7 Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 + Programming Language :: Python :: 3.10 [options] zip_safe = False include_package_data = True packages = find: -python_requires = >=3.6 +python_requires = >=3.7 install_requires = packaging tomlkit