Skip to content

Commit

Permalink
Merge pull request #48 from wireservice/python311
Browse files Browse the repository at this point in the history
ci: Test on Python 3.10 and 3.11
  • Loading branch information
jpmckinney committed Dec 20, 2022
2 parents 7083d1e + 67b1b02 commit da47dcc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
python-version: [2.7, 3.6, 3.7, 3.8, 3.9, pypy-2.7, pypy-3.6, pypy-3.7]
python-version: [3.7, 3.8, 3.9, '3.10', '3.11', pypy-3.7]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
Expand All @@ -26,4 +26,4 @@ jobs:
- run: flake8 .
- run: isort . --check-only
- run: pip install .[test]
- run: nosetests
- run: pytest --cov agateexcel
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@
],
extras_require={
'test': [
'nose>=1.1.2',
'pytest',
'pytest-cov',
],
'docs': [
'Sphinx>=1.2.2',
Expand Down

0 comments on commit da47dcc

Please sign in to comment.