8000 start anyio port by graingert · Pull Request #357 · encode/databases · GitHub
[go: up one dir, main page]

Skip to content

start anyio port #357

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

Draft
wants to merge 3 commits into
base: master
Choose a base branch
from
Draft
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
Prev Previous commit
Next Next commit
add a valid postgresql-aiopg setuptools extra
  • Loading branch information
graingert committed Jun 21, 2021
commit 69437726f2b8f0a8db75ae33f81ed2f0b425ff3f
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Notes...
# The JSONField tests require sqlalchemy 1.3+. Other cases work at lower versions.
# The aiocontextvars package is only required as a backport for Python 3.6.
-e .[trio-postgresql,trio-mysql,mysql,sqlite,postgresql,postgresql+aiopg]
-e .[trio-postgresql,trio-mysql,mysql,sqlite,postgresql,postgresql-aiopg]

# Sync database drivers for standard tooling around setup/teardown/migrations.
psycopg2-binary
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ def get_packages(package):
"postgresql": ["asyncpg"],
"mysql": ["aiomysql"],
"sqlite": ["aiosqlite"],
"postgresql+aiopg": ["aiopg"]
"postgresql+aiopg": ["aiopg"],
"postgresql-aiopg": ["aiopg"]
},
classifiers=[
"Development Status :: 3 - Alpha",
Expand Down
0