From d055802a667308366c8332eb5c5ce59535b5a432 Mon Sep 17 00:00:00 2001 From: Kurt McKee Date: Mon, 16 May 2022 08:53:24 -0500 Subject: [PATCH] Fix pypy3 CI issue on MacOS --- .github/workflows/build.yml | 8 ++++---- tox.ini | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e3154c0..4d1c7e4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,7 +12,7 @@ jobs: fail-fast: false matrix: os: ["ubuntu-latest", "macos-latest"] - python: ["2.7", "pypy2", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "pypy3"] + python: ["2.7", "pypy-2.7", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "pypy-3.9"] include: - os: "windows-latest" python: "3.8" @@ -26,13 +26,13 @@ jobs: - uses: actions/checkout@v3 with: submodules: recursive - - uses: actions/setup-python@v2 + - uses: actions/setup-python@v3 with: python-version: ${{ matrix.python }} - name: "Install dependencies" run: | - python -m pip install --disable-pip-version-check --upgrade pip setuptools - python -m pip install --disable-pip-version-check tox tox-gh-actions + python -m pip install --upgrade pip setuptools + python -m pip install tox tox-gh-actions - name: "Run tests" run: | python -m tox diff --git a/tox.ini b/tox.ini index f08f09c..6bf285a 100644 --- a/tox.ini +++ b/tox.ini @@ -88,8 +88,8 @@ python = 3.10: py310-all_platforms ; Run on most platforms (Linux and Mac) - pypy-2: pypy2-most_platforms - pypy-3: pypy3-most_platforms + pypy-2.7: pypy2-most_platforms + pypy-3.9: pypy3-most_platforms 2.7: py27-most_platforms 3.5: py35-most_platforms 3.6: py36-most_platforms