Skip to content

Commit 1fa325b

Browse files
committed
Test on Python 3.10 alpha 6 and PyPy
1 parent da803e5 commit 1fa325b

File tree

6 files changed

+17
-8
lines changed

6 files changed

+17
-8
lines changed

.github/workflows/python_ci.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: "windows-2019"
1414
continue-on-error: ${{ matrix.config.experimental }}
1515
env:
16-
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10.0-alpha.5'
16+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10.0-alpha.6,pypy-3.6,pypy-3.7'
1717

1818
strategy:
1919
fail-fast: False
@@ -23,7 +23,9 @@ jobs:
2323
- {python-version: "3.7", testenvs: "py37,build", experimental: False}
2424
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
2525
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
26-
- {python-version: "3.10.0-alpha.5", testenvs: "py310-dev,build", experimental: True}
26+
- {python-version: "3.10.0-alpha.6", testenvs: "py310-dev,build", experimental: True}
27+
- {python-version: "pypy-3.6", testenvs: "pypy36,build", experimental: False}
28+
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: True}
2729

2830
steps:
2931
- name: Checkout 🛎️

.github/workflows/python_ci_linux.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: "ubuntu-20.04"
1414
continue-on-error: ${{ matrix.config.experimental }}
1515
env:
16-
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10.0-alpha.5'
16+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10.0-alpha.6,pypy-3.6,pypy-3.7'
1717

1818
strategy:
1919
fail-fast: False
@@ -23,7 +23,9 @@ jobs:
2323
- {python-version: "3.7", testenvs: "py37,build", experimental: False}
2424
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
2525
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
26-
- {python-version: "3.10.0-alpha.5", testenvs: "py310-dev,build", experimental: True}
26+
- {python-version: "3.10.0-alpha.6", testenvs: "py310-dev,build", experimental: True}
27+
- {python-version: "pypy-3.6", testenvs: "pypy36,build", experimental: False}
28+
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: True}
2729

2830
steps:
2931
- name: Checkout 🛎️

.github/workflows/python_ci_macos.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: "macos-latest"
1414
continue-on-error: ${{ matrix.config.experimental }}
1515
env:
16-
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10.0-alpha.5'
16+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10.0-alpha.6,pypy-3.6,pypy-3.7'
1717

1818
strategy:
1919
fail-fast: False
@@ -23,7 +23,9 @@ jobs:
2323
- {python-version: "3.7", testenvs: "py37,build", experimental: False}
2424
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
2525
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
26-
- {python-version: "3.10.0-alpha.5", testenvs: "py310-dev,build", experimental: True}
26+
- {python-version: "3.10.0-alpha.6", testenvs: "py310-dev,build", experimental: True}
27+
- {python-version: "pypy-3.6", testenvs: "pypy36,build", experimental: False}
28+
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: True}
2729

2830
steps:
2931
- name: Checkout 🛎️

repo_helper.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ python_versions:
2222
- '3.8'
2323
- '3.9'
2424
- 3.10-dev
25+
- pypy36
26+
- pypy37
2527

2628
classifiers:
2729
- 'Development Status :: 4 - Beta'

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ classifiers =
3333
Programming Language :: Python :: 3.8
3434
Programming Language :: Python :: 3.9
3535
Programming Language :: Python :: Implementation :: CPython
36+
Programming Language :: Python :: Implementation :: PyPy
3637
Topic :: Utilities
3738
Typing :: Typed
3839

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# * pytest
1616

1717
[tox]
18-
envlist = py36, py37, py38, py39, py310-dev, mypy, build
18+
envlist = py36, py37, py38, py39, py310-dev, pypy36, pypy37, mypy, build
1919
skip_missing_interpreters = True
2020
isolated_build = True
2121
requires =
@@ -24,7 +24,7 @@ requires =
2424
tox-pip-version==0.0.7
2525

2626
[envlists]
27-
test = py36, py37, py38, py39, py310-dev
27+
test = py36, py37, py38, py39, py310-dev, pypy36, pypy37
2828
qa = mypy, lint
2929
cov = py36, coverage
3030

0 commit comments

Comments
 (0)