Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 90bf597

Browse files
committed
update pypy ci specifier
1 parent 2864588 commit 90bf597

File tree

3 files changed

+3
-8
lines changed

3 files changed

+3
-8
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,7 @@ jobs:
1919
matrix:
2020
os: [Ubuntu, Windows, macOS]
2121
python_version:
22-
["3.6", "3.7", "3.8", "3.9", "3.10", "pypy3"]
23-
exclude:
24-
# This is failing due to pip not being in the virtual environment.
25-
# https://github.com/pypa/packaging/runs/424785871#step:7:9
26-
- os: windows
27-
python_version: pypy3
22+
["3.6", "3.7", "3.8", "3.9", "3.10", "pypy-3.7"]
2823

2924
steps:
3025
- uses: actions/checkout@v1

docs/development/getting-started.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ each supported Python version and run the tests. For example:
3434
nox > * tests-3.7: success
3535
nox > * tests-3.8: success
3636
nox > * tests-3.9: success
37-
nox > * tests-pypy3: skipped
37+
nox > * tests-pypy-3.7: skipped
3838
3939
You may not have all the required Python versions installed, in which case you
4040
will see one or more ``InterpreterNotFound`` errors.

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
nox.options.reuse_existing_virtualenvs = True
2222

2323

24-
@nox.session(python=["3.6", "3.7", "3.8", "3.9", "3.10", "pypy3"])
24+
@nox.session(python=["3.6", "3.7", "3.8", "3.9", "3.10", "pypy-3.7"])
2525
def tests(session):
2626
def coverage(*args):
2727
session.run("python", "-m", "coverage", *args)

0 commit comments

Comments
 (0)