Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Enable Python 3.13 in cattrs 3rd party tests #577

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 5 commits into from
May 5, 2025
Merged
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
5 changes: 3 additions & 2 deletions .github/workflows/third_party.yml
Original file line number Diff line number Diff line change
Expand Up @@ -270,8 +270,7 @@ jobs:
strategy:
fail-fast: false
matrix:
# skip 3.13 because msgspec doesn't support 3.13 yet
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
Expand All @@ -292,6 +291,8 @@ jobs:
cd cattrs
pdm remove typing-extensions
pdm add --dev ../typing-extensions-latest
pdm update --group=docs pendulum # pinned version in lockfile is incompatible with py313 as of 2025/05/05
pdm sync --clean
- name: Install cattrs test dependencies
run: cd cattrs; pdm install --dev -G :all
- name: List all installed dependencies
Expand Down
Loading