8000 Add experimental CI for CPython 3.13 by corona10 · Pull Request #320 · python/pyperformance · GitHub
[go: up one dir, main page]

Skip to content

Add experimental CI for CPython 3.13 #320

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 7 commits into from
Oct 22, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove 3.7 EOL and use 3.11 as the default CI version for other OS
  • Loading branch information
corona10 committed Oct 22, 2023
commit 1845cd7fa8fca52fe911ecacc6a53838d4af28e7
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,19 +32,19 @@ jobs:
experimental: true
# Also test PyPy, macOS, and Windows:
- os: ubuntu-latest
python: pypy-3.9
python: pypy-3.10
experimental: false
- os: ubuntu-latest
python: pypy-3.8
python: pypy-3.9
experimental: false
- os: ubuntu-latest
python: pypy-3.7
python: pypy-3.8
experimental: false
- os: macos-latest
python: "3.10"
python: "3.11"
experimental: false
- os: windows-latest
python: "3.10"
python: "3.11"
experimental: false
steps:
- uses: actions/checkout@v3
Expand Down
0