8000 Test against Python 3.10 and PyPy3.7 · datalad/datalad-installer@858afb2 · GitHub
[go: up one dir, main page]

Skip to content

Commit 858afb2

Browse files
committed
Test against Python 3.10 and PyPy3.7
See <actions/setup-python#244> for the latter.
1 parent 655b0f7 commit 858afb2

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ jobs:
2727
- '3.7'
2828
- '3.8'
2929
- '3.9'
30-
- 'pypy3'
30+
- '3.10'
31+
- 'pypy-3.7'
3132
toxenv: [py]
3233
include:
3334
- python-version: '3.6'
@@ -38,7 +39,7 @@ jobs:
3839
os: ubuntu-latest
3940
exclude:
4041
# venv seems to be broken on pypy3 under Windows.
41-
- python-version: 'pypy3'
42+
- python-version: 'pypy-3.7'
4243
toxenv: py
4344
os: windows-latest
4445
steps:

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ classifiers =
3030
Programming Language :: Python :: 3.7
3131
Programming Language :: Python :: 3.8
3232
Programming Language :: Python :: 3.9
33+
Programming Language :: Python :: 3.10
3334
Programming Language :: Python :: Implementation :: CPython
3435
Programming Language :: Python :: Implementation :: PyPy
3536
License :: OSI Approved :: MIT License

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = typing,py36,py37,py38,py39,pypy3
2+
envlist = typing,py36,py37,py38,py39,py310,pypy3
33
skip_missing_interpreters = True
44
isolated_build = True
55
minversion = 3.3.0

0 commit comments

Comments
 (0)
0