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: Verify support on Python 3.13 #14

Merged
merged 1 commit into from
Oct 21, 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
5 changes: 4 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,10 @@ jobs:
"macos-12",
"macos-latest",
]
python-version: ["3.7", "3.11", "3.12"]
python-version: [
"3.7",
"3.13",
]

# Doesn't work on macOS (ARM) with older versions of Python.
exclude:
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
Copy link
Member Author

@amotl amotl Oct 18, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Currently, asyncpg does not provide binary wheels for CPython 3.13, and building it fails on GHA. A new release will probably be around the corner.

Copy link
Member Author

@amotl amotl Oct 19, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

asyncpg 0.30.0 has been released. Thanks a stack, @elprans and all contributors.

-- https://pypi.org/project/asyncpg/

"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: SQL",
"Topic :: Adaptive Technologies",
Expand Down
Loading