Skip to content

Commit 6943772

Browse files
committed
add a valid postgresql-aiopg setuptools extra
1 parent b2df748 commit 6943772

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Notes...
22
# The JSONField tests require sqlalchemy 1.3+. Other cases work at lower versions.
33
# The aiocontextvars package is only required as a backport for Python 3.6.
4-
-e .[trio-postgresql,trio-mysql,mysql,sqlite,postgresql,postgresql+aiopg]
4+
-e .[trio-postgresql,trio-mysql,mysql,sqlite,postgresql,postgresql-aiopg]
55

66
# Sync database drivers for standard tooling around setup/teardown/migrations.
77
psycopg2-binary

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,8 @@ def get_packages(package):
5555
"postgresql": ["asyncpg"],
5656
"mysql": ["aiomysql"],
5757
"sqlite": ["aiosqlite"],
58-
"postgresql+aiopg": ["aiopg"]
58+
"postgresql+aiopg": ["aiopg"],
59+
"postgresql-aiopg": ["aiopg"]
5960
},
6061
classifiers=[
6162
"Development Status :: 3 - Alpha",

0 commit comments

Comments
 (0)