Skip to content

Commit 5a9c5b3

Browse files
committed
Test on Python 3.10 alpha 6 and PyPy 3.7
1 parent bd9eef5 commit 5a9c5b3

File tree

5 files changed

+16
-11
lines changed

5 files changed

+16
-11
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 & 3 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,pypy-3.6'
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,8 +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}
27-
- {python-version: "pypy-3.6", testenvs: "pypy3,build", experimental: False}
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}
2829

2930
steps:
3031
- name: Checkout 🛎️

.github/workflows/python_ci_macos.yml

Lines changed: 4 additions & 3 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,pypy-3.6'
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,8 +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}
27-
- {python-version: "pypy-3.6", testenvs: "pypy3,build", experimental: False}
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}
2829

2930
steps:
3031
- name: Checkout 🛎️

repo_helper.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ python_versions:
2020
- '3.8'
2121
- '3.9'
2222
- 3.10-dev
23-
- pypy3
23+
- pypy36
24+
- pypy37
2425

2526
classifiers:
2627
- 'Development Status :: 4 - Beta'

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, pypy3, 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, pypy3
27+
test = py36, py37, py38, py39, py310-dev, pypy36, pypy37
2828
qa = mypy, lint
2929
cov = py36, coverage
3030

0 commit comments

Comments
 (0)