Skip to content

Commit

Permalink
Add Support for Python 3.11 (#56)
Browse files Browse the repository at this point in the history
Run tests on python 3.11
  • Loading branch information
mbarkhau authored Oct 26, 2022
1 parent b5c73c9 commit eed5581
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nox-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ '3.6', '3.7', '3.8', '3.9', '3.10' ]
python-version: [ '3.6', '3.7', '3.8', '3.9', '3.10', '3.11' ]
name: Test Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import nox


@nox.session(py=['3.6', '3.7', '3.8', '3.9', '3.10'])
@nox.session(py=['3.6', '3.7', '3.8', '3.9', '3.10', '3.11'])
def unit(session):
session.install('pytest', 'pytest-cov')
session.install('.')
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ def finalize_options(self):
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
package_dir={'': 'src'},
packages=find_packages(where='src'),
Expand Down

0 comments on commit eed5581

Please sign in to comment.