Skip to content

Commit 462fec7

Browse files
committed
Test on PyPy 3.10
1 parent 12dfb66 commit 462fec7

File tree

5 files changed

+17
-10
lines changed

5 files changed

+17
-10
lines changed

.github/workflows/python_ci.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: "windows-2019"
2323
continue-on-error: ${{ matrix.config.experimental }}
2424
env:
25-
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,3.12.0-rc.1,pypy-3.6,pypy-3.7,pypy-3.8,pypy-3.9'
25+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,3.12.0-rc.1,pypy-3.6,pypy-3.7,pypy-3.8,pypy-3.9,pypy310'
2626

2727
strategy:
2828
fail-fast: False
@@ -36,9 +36,10 @@ jobs:
3636
- {python-version: "3.11", testenvs: "py311,build", experimental: False}
3737
- {python-version: "3.12.0-rc.1", testenvs: "py312-dev,build", experimental: True}
3838
- {python-version: "pypy-3.6", testenvs: "pypy36", experimental: False}
39-
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: True}
40-
- {python-version: "pypy-3.8", testenvs: "pypy38,build", experimental: True}
39+
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: False}
40+
- {python-version: "pypy-3.8", testenvs: "pypy38,build", experimental: False}
4141
- {python-version: "pypy-3.9", testenvs: "pypy39,build", experimental: True}
42+
- {python-version: "pypy310", testenvs: "pypy310,build", experimental: True}
4243

4344
steps:
4445
- name: Checkout 🛎️

.github/workflows/python_ci_linux.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: "ubuntu-20.04"
2424
continue-on-error: ${{ matrix.config.experimental }}
2525
env:
26-
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,3.12.0-rc.1,pypy-3.6,pypy-3.7,pypy-3.8,pypy-3.9'
26+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,3.12.0-rc.1,pypy-3.6,pypy-3.7,pypy-3.8,pypy-3.9,pypy310'
2727

2828
strategy:
2929
fail-fast: False
@@ -37,9 +37,10 @@ jobs:
3737
- {python-version: "3.11", testenvs: "py311,build", experimental: False}
3838
- {python-version: "3.12.0-rc.1", testenvs: "py312-dev,build", experimental: True}
3939
- {python-version: "pypy-3.6", testenvs: "pypy36,build", experimental: False}
40-
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: True}
41-
- {python-version: "pypy-3.8", testenvs: "pypy38,build", experimental: True}
40+
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: False}
41+
- {python-version: "pypy-3.8", testenvs: "pypy38,build", experimental: False}
4242
- {python-version: "pypy-3.9", testenvs: "pypy39,build", experimental: True}
43+
- {python-version: "pypy310", testenvs: "pypy310,build", experimental: True}
4344

4445
steps:
4546
- name: Checkout 🛎️

.github/workflows/python_ci_macos.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: "macos-latest"
2323
continue-on-error: ${{ matrix.config.experimental }}
2424
env:
25-
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,3.12.0-rc.1,pypy-3.7,pypy-3.8,pypy-3.9'
25+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,3.12.0-rc.1,pypy-3.7,pypy-3.8,pypy-3.9,pypy310'
2626

2727
strategy:
2828
fail-fast: False
@@ -35,9 +35,10 @@ jobs:
3535
- {python-version: "3.10", testenvs: "py310,build", experimental: False}
3636
- {python-version: "3.11", testenvs: "py311,build", experimental: False}
3737
- {python-version: "3.12.0-rc.1", testenvs: "py312-dev,build", experimental: True}
38-
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: True}
39-
- {python-version: "pypy-3.8", testenvs: "pypy38,build", experimental: True}
38+
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: False}
39+
- {python-version: "pypy-3.8", testenvs: "pypy38,build", experimental: False}
4040
- {python-version: "pypy-3.9", testenvs: "pypy39,build", experimental: True}
41+
- {python-version: "pypy310", testenvs: "pypy310,build", experimental: True}
4142

4243
steps:
4344
- name: Checkout 🛎️

repo_helper.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ python_versions:
3131
pypy37:
3232
pypy38:
3333
pypy39:
34+
pypy310:
3435

3536
classifiers:
3637
- 'Development Status :: 5 - Production/Stable'

tox.ini

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ envlist =
3030
pypy37
3131
pypy38
3232
pypy39
33+
pypy310
3334
mypy
3435
build
3536
skip_missing_interpreters = True
@@ -53,6 +54,7 @@ test =
5354
pypy37
5455
pypy38
5556
pypy39
57+
pypy310
5658
qa = mypy, lint
5759
cov = py36, coverage
5860

@@ -239,7 +241,8 @@ filterwarnings =
239241
always:ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant:DeprecationWarning
240242
always:datetime.utcfromtimestamp\(\) is deprecated and scheduled for removal in a future version:DeprecationWarning:pytz.tzinfo
241243
always:the imp module is deprecated in favour of importlib:DeprecationWarning
242-
; Only on PyPy 3.9+, where it's used in a Python test we import
244+
always:The distutils package is deprecated and slated for removal in Python 3.12:DeprecationWarning
245+
always:The distutils.sysconfig module is deprecated:DeprecationWarning
243246
244247
[testenv]
245248
setenv =

0 commit comments

Comments
 (0)