Skip to content
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

CI: Update host OS version, add Python 3.13 #323

Merged
merged 5 commits into from
Sep 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
6 changes: 3 additions & 3 deletions .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,12 @@ jobs:
include:
- os: ubuntu-latest
name: linux-x86_64
- os: windows-2019
- os: windows-latest
name: windows-amd64
- os: macos-11
- os: macos-13
name: macos-x86_64
macos_arch: "x86_64"
- os: macos-11
- os: macos-14
EwoutH marked this conversation as resolved.
Show resolved Hide resolved
name: macos-arm64
macos_arch: "arm64"

Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
os: [ubuntu-latest, macos-latest, windows-latest]
compile: [true, false]
include:
Expand All @@ -46,6 +46,8 @@ jobs:
# still working on ci test errors
- os: windows-latest
python-version: "3.12"
- compile: true
python-version: "3.13"

test-qt:
name: Test Qt
Expand All @@ -71,7 +73,7 @@ jobs:
include:
- os: macos-13
qt: PySide2

upload_coverage:
if: always()
needs: [test, test-qt]
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ test = [
"pytest>=6.0",
"pytest-cov",
"wrapt",
"msgspec",
"msgspec; python_version < '3.13'",
"toolz",
]
testqt = ["pytest-qt", "qtpy"]
Expand Down