From 90bf597ace3910fcbcd9cbc8fff1503417c3edda Mon Sep 17 00:00:00 2001 From: mattip Date: Thu, 14 Oct 2021 22:03:41 +0300 Subject: [PATCH] update pypy ci specifier --- .github/workflows/test.yml | 7 +------ docs/development/getting-started.rst | 2 +- noxfile.py | 2 +- 3 files changed, 3 insertions(+), 8 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d6a30afb8..00cb24cf3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -19,12 +19,7 @@ jobs: matrix: os: [Ubuntu, Windows, macOS] python_version: - ["3.6", "3.7", "3.8", "3.9", "3.10", "pypy3"] - exclude: - # This is failing due to pip not being in the virtual environment. - # https://github.com/pypa/packaging/runs/424785871#step:7:9 - - os: windows - python_version: pypy3 + ["3.6", "3.7", "3.8", "3.9", "3.10", "pypy-3.7"] steps: - uses: actions/checkout@v1 diff --git a/docs/development/getting-started.rst b/docs/development/getting-started.rst index 8bd42ac08..40fd6ce6b 100644 --- a/docs/development/getting-started.rst +++ b/docs/development/getting-started.rst @@ -34,7 +34,7 @@ each supported Python version and run the tests. For example: nox > * tests-3.7: success nox > * tests-3.8: success nox > * tests-3.9: success - nox > * tests-pypy3: skipped + nox > * tests-pypy-3.7: skipped You may not have all the required Python versions installed, in which case you will see one or more ``InterpreterNotFound`` errors. diff --git a/noxfile.py b/noxfile.py index d5389b505..b0334936d 100644 --- a/noxfile.py +++ b/noxfile.py @@ -21,7 +21,7 @@ nox.options.reuse_existing_virtualenvs = True -@nox.session(python=["3.6", "3.7", "3.8", "3.9", "3.10", "pypy3"]) +@nox.session(python=["3.6", "3.7", "3.8", "3.9", "3.10", "pypy-3.7"]) def tests(session): def coverage(*args): session.run("python", "-m", "coverage", *args)