Skip to content

Commit

Permalink
disable 3.13-dev as asyncpg cannot be build yet
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-oleshkevich committed Apr 3, 2024
1 parent a92235d commit 47df2cf
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13-dev"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

services:
zookeeper:
Expand Down
1 change: 1 addition & 0 deletions .python-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.13.0a3
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"anyio>=3.4.0,<5",
Expand Down
1 change: 0 additions & 1 deletion tests/test_broadcast.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ async def test_memory():
async with broadcast.subscribe("chatroom") as subscriber:
await broadcast.publish("chatroom", "hello")
event = await subscriber.get()
assert event
assert event.channel == "chatroom"
assert event.message == "hello"

Expand Down

0 comments on commit 47df2cf

Please sign in to comment.