Skip to content

Commit

Permalink
Add support for Python 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
hartwork committed Mar 8, 2022
1 parent a5790d2 commit fc6e834
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/smoke_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
build_and_test:
strategy:
matrix:
python-version: [3.8, 3.9] # oldest and most recent version supported
python-version: [3.8, '3.10'] # oldest and most recent version supported
name: Build and smoke test
runs-on: ubuntu-20.04
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
build_and_test:
strategy:
matrix:
python-version: [3.8, 3.9] # oldest and most recent version supported
python-version: [3.8, '3.10'] # oldest and most recent version supported
name: Run Python test suite
runs-on: ubuntu-20.04
steps:
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,5 +54,6 @@
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3 :: Only',
])

0 comments on commit fc6e834

Please sign in to comment.