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

feat: add support for Python 3.13 #383

Merged
merged 5 commits into from
Nov 6, 2024
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
5 changes: 4 additions & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,10 @@ jobs:
pull-requests: write
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
# TODO: Change to macos-latest when Python 3.9 is depcrecated. We're
rhatgadkar-goog marked this conversation as resolved.
Show resolved Hide resolved
# using macos-12 here, because psycopg 2.9.10 package on
# Python 3.9 is only for macos-12.
os: [macos-12, windows-latest, ubuntu-latest]
python-version: ["3.9", "3.13"]
fail-fast: false
steps:
Expand Down
Loading