Skip to content

Commit

Permalink
Add CPython 3.10 to CI python versions (#5)
Browse files Browse the repository at this point in the history
* add python 3.10 to CI

* update pytest
  • Loading branch information
p7g committed Dec 20, 2021
1 parent 05dbe8a commit 365a388
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python-version: [3.8, 3.9]
python-version: ["3.8", "3.9", "3.10"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
Expand Down
6 changes: 3 additions & 3 deletions riotfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
pys=3,
venvs=[
Venv(
pys=[3.8, 3.9],
pys=["3.8", "3.9", "3.10"],
name="test",
command="pytest {cmdargs}",
pkgs={
"pytest": "==6.1.2",
"pytest-asyncio": "==0.14.0",
"pytest": "==6.2.5",
"pytest-asyncio": "==0.16.0",
"pytest-cov": latest,
# extras_require
"ddtrace": latest,
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: BSD License",
],
keywords="asyncio",
Expand Down

0 comments on commit 365a388

Please sign in to comment.