diff --git a/.github/workflows/test-n-publish.yml b/.github/workflows/test-n-publish.yml index cbf0b7c..f1c9c5c 100644 --- a/.github/workflows/test-n-publish.yml +++ b/.github/workflows/test-n-publish.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.6, 3.7, 3.8] + python-version: [3.7, 3.8, 3.9, 3.10] steps: - uses: actions/checkout@v2 @@ -35,4 +35,4 @@ jobs: with: skip_existing: true user: __token__ - password: ${{ secrets.pypi_password }} \ No newline at end of file + password: ${{ secrets.pypi_password }} diff --git a/setup.py b/setup.py index e28a9de..048d8b1 100755 --- a/setup.py +++ b/setup.py @@ -76,11 +76,10 @@ def find_version(*file_paths): # Specify the Python versions you support here. In particular, ensure # that you indicate whether you support Python 2, Python 3 or both. 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.5', - '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', ], # What does your project relate to? @@ -108,7 +107,7 @@ def find_version(*file_paths): 'psutil', 'compress_pickle', ], - python_requires='>=3.5', + python_requires='>=3.7', # List additional groups of dependencies here (e.g. development dependencies). # You can install these using the following syntax, for example: