Skip to content

Commit

Permalink
Merge pull request #43 from Refty/newer-python
Browse files Browse the repository at this point in the history
Test against Python 3.10 and 3.11
  • Loading branch information
ramnes committed Dec 1, 2022
2 parents 31df715 + 40a208f commit 4261478
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, pypy-3.7, pypy-3.8, pypy-3.9]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "pypy-3.7", "pypy-3.8", "pypy-3.9"]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- run: pip install -r requirements.txt coveralls
- run: pip install coveralls && cat requirements.txt | xargs -n 1 pip install || true
- run: docker-compose up -d
- run: pytest
- run: coveralls --service=github
Expand Down
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ def get_description():
"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",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Intended Audience :: Developers",
Expand Down

0 comments on commit 4261478

Please sign in to comment.