Skip to content

Commit

Permalink
moving forward in time. Python <3.7 support droped, added 3.9 and 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
cod3monk committed Feb 17, 2022
1 parent 2181b52 commit 0362ba4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test-n-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -35,4 +35,4 @@ jobs:
with:
skip_existing: true
user: __token__
password: ${{ secrets.pypi_password }}
password: ${{ secrets.pypi_password }}
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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?
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit 0362ba4

Please sign in to comment.