Skip to content

Commit

Permalink
Start testing Python 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
ob-stripe committed Jan 19, 2022
1 parent 957ae56 commit 8f9dd34
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@ jobs:
- name: Set up Python 3
uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: 3.10
- name: fmtcheck
run: make fmtcheck

build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9, pypy-2.7, pypy-3.7]
python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9, 3.10, pypy-2.7, pypy-3.7]

steps:
- uses: actions/checkout@v2
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules",
],
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ passenv = LDFLAGS CFLAGS

[testenv:fmt]
description = run code formatting using black
basepython = python3.9
basepython = python3.10
deps = black==21.10b0
commands = black . {posargs}
skip_install = true
Expand Down

0 comments on commit 8f9dd34

Please sign in to comment.