1
0
Fork 0
mirror of https://github.com/ultrajson/ultrajson.git synced 2024-05-07 22:16:12 +02:00

CI: Replace pypy3.8 with pypy3.10 (#598)

This commit is contained in:
Hugo van Kemenade 2023-06-20 16:32:29 +03:00 committed by GitHub
commit 847b4e9bc0
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,11 +11,11 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["pypy-3.8", "3.8", "3.9", "3.10", "3.11", "3.12-dev"]
python-version: ["pypy-3.10", "3.8", "3.9", "3.10", "3.11", "3.12"]
os: [ubuntu-latest]
include:
- { python-version: "pypy-3.8", os: windows-latest }
- { python-version: "pypy-3.8", os: macos-latest }
- { python-version: "pypy-3.10", os: windows-latest }
- { python-version: "pypy-3.10", os: macos-latest }
- { python-version: "3.10", os: windows-latest }
- { python-version: "3.10", os: macos-latest }
- { python-version: "3.11", os: windows-latest }
@ -28,6 +28,7 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
cache: pip
cache-dependency-path: "setup.py"