Skip to content

Commit

Permalink
CI: Use Python 3.13 (#2325)
Browse files Browse the repository at this point in the history
* CI: Use Python 3.13
Faster, better error messages, etc.

* CI: allow-prereleases: true for examples
  • Loading branch information
EwoutH authored Oct 11, 2024
1 parent a8e2b83 commit 80c1c42
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
python-version: '3.13'
- name: Add project directory to PYTHONPATH
run: echo "PYTHONPATH=$PYTHONPATH:$(pwd)" >> $GITHUB_ENV
- name: Install dependencies
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/build_lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ jobs:
fail-fast: False
matrix:
os: [windows, ubuntu, macos]
python-version: ["3.12"]
python-version: ["3.13"]
include:
- os: ubuntu
python-version: "3.13"
python-version: "3.12"
- os: ubuntu
python-version: "3.11"
- os: ubuntu
Expand Down Expand Up @@ -68,7 +68,8 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
python-version: "3.13"
allow-prereleases: true
cache: 'pip'
- name: Install uv
run: pip install uv
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
python-version: "3.13"
allow-prereleases: true
cache: 'pip'
- name: Install dependencies
run: pip install -U pip hatch
Expand Down

0 comments on commit 80c1c42

Please sign in to comment.