Skip to content

Commit

Permalink
Update supported Python versions (#219)
Browse files Browse the repository at this point in the history
Remove unsupported 3.6
Add current 3.10
  • Loading branch information
ptmerz committed Oct 10, 2022
1 parent 9af9f76 commit 4c27321
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/continous_integration.yaml
Expand Up @@ -14,8 +14,8 @@ jobs:
strategy:

matrix:
os: [macOS-latest, ubuntu-latest]
python-version: [3.6, 3.7, 3.8, 3.9]
os: ["macOS-latest", "ubuntu-latest"]
python-version: ["3.7", "3.8", "3.9", "3.10"]

steps:
- uses: actions/checkout@v3
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Expand Up @@ -62,10 +62,11 @@
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'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',
'Programming Language :: Python :: 3.11',
'Environment :: Console',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Bio-Informatics',
Expand Down

0 comments on commit 4c27321

Please sign in to comment.