Skip to content

Commit cb84854

Browse files
committed
Don't test on PyPy as we don't support 3.6
1 parent 5fb93dc commit cb84854

File tree

4 files changed

+4
-7
lines changed

4 files changed

+4
-7
lines changed

.github/workflows/python_ci_linux.yml

Lines changed: 1 addition & 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.7,3.8,3.9,3.10.0-alpha.5,pypy-3.6'
16+
USING_COVERAGE: '3.7,3.8,3.9,3.10.0-alpha.5'
1717

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

2827
steps:
2928
- name: Checkout 🛎️

.github/workflows/python_ci_macos.yml

Lines changed: 1 addition & 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.7,3.8,3.9,3.10.0-alpha.5,pypy-3.6'
16+
USING_COVERAGE: '3.7,3.8,3.9,3.10.0-alpha.5'
1717

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

2827
steps:
2928
- name: Checkout 🛎️

repo_helper.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ python_versions:
1717
- 3.8
1818
- 3.9
1919
- 3.10-dev
20-
- pypy3
2120

2221
entry_points:
2322
tox:

tox.ini

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

1818
[tox]
19-
envlist = py37, py38, py39, py310-dev, pypy3, mypy, build
19+
envlist = py37, py38, py39, py310-dev, mypy, build
2020
skip_missing_interpreters = True
2121
isolated_build = True
2222
requires =
@@ -25,7 +25,7 @@ requires =
2525
tox-pip-version>=0.0.7
2626

2727
[envlists]
28-
test = py37, py38, py39, py310-dev, pypy3
28+
test = py37, py38, py39, py310-dev
2929
qa = mypy, lint
3030
cov = py37, coverage
3131

0 commit comments

Comments
 (0)