mirror of
1
0
Fork 0

Fix pypy3 CI issue on MacOS

This commit is contained in:
Kurt McKee 2022-05-16 08:53:24 -05:00
parent 59b1b85d07
commit d055802a66
2 changed files with 6 additions and 6 deletions

View File

@ -12,7 +12,7 @@ jobs:
fail-fast: false fail-fast: false
matrix: matrix:
os: ["ubuntu-latest", "macos-latest"] 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: include:
- os: "windows-latest" - os: "windows-latest"
python: "3.8" python: "3.8"
@ -26,13 +26,13 @@ jobs:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
with: with:
submodules: recursive submodules: recursive
- uses: actions/setup-python@v2 - uses: actions/setup-python@v3
with: with:
python-version: ${{ matrix.python }} python-version: ${{ matrix.python }}
- name: "Install dependencies" - name: "Install dependencies"
run: | run: |
python -m pip install --disable-pip-version-check --upgrade pip setuptools python -m pip install --upgrade pip setuptools
python -m pip install --disable-pip-version-check tox tox-gh-actions python -m pip install tox tox-gh-actions
- name: "Run tests" - name: "Run tests"
run: | run: |
python -m tox python -m tox

View File

@ -88,8 +88,8 @@ python =
3.10: py310-all_platforms 3.10: py310-all_platforms
; Run on most platforms (Linux and Mac) ; Run on most platforms (Linux and Mac)
pypy-2: pypy2-most_platforms pypy-2.7: pypy2-most_platforms
pypy-3: pypy3-most_platforms pypy-3.9: pypy3-most_platforms
2.7: py27-most_platforms 2.7: py27-most_platforms
3.5: py35-most_platforms 3.5: py35-most_platforms
3.6: py36-most_platforms 3.6: py36-most_platforms