Fix pypy3 CI issue on MacOS
This commit is contained in:
parent
59b1b85d07
commit
d055802a66
2 changed files with 6 additions and 6 deletions
8
.github/workflows/build.yml
vendored
8
.github/workflows/build.yml
vendored
|
@ -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
|
||||
|
|
4
tox.ini
4
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
|
||||
|
|
Loading…
Reference in a new issue