Skip to content

Commit

Permalink
chore: make driver versions more flexible (#904)
Browse files Browse the repository at this point in the history
  • Loading branch information
jackwotherspoon authored Nov 16, 2023
1 parent 08fc8cd commit a75c1ce
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,10 @@
namespace_packages=namespaces,
install_requires=core_dependencies,
extras_require={
"pymysql": ["PyMySQL==1.1.0"],
"pg8000": ["pg8000==1.30.3"],
"pytds": ["python-tds==1.13.0"],
"asyncpg": ["asyncpg==0.29.0"]
"pymysql": ["PyMySQL>=1.1.0"],
"pg8000": ["pg8000>=1.30.3"],
"pytds": ["python-tds>=1.13.0"],
"asyncpg": ["asyncpg>=0.29.0"]
},
python_requires=">=3.8",
include_package_data=True,
Expand Down

0 comments on commit a75c1ce

Please sign in to comment.