Skip to content

Commit 0c14827

Browse files
committed
Install pytz by default as a dependency
It's possible for users to switch between experimental Python types and the old types on the fly and is not something they will decide when installing the module. So the module must include pytz as a required dependency.
1 parent dd5e51a commit 0c14827

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
kerberos_require = ["requests_kerberos"]
2929
sqlalchemy_require = ["sqlalchemy~=1.3"]
3030

31-
all_require = ["pytz"] + kerberos_require + sqlalchemy_require
31+
all_require = kerberos_require + sqlalchemy_require
3232

3333
tests_require = all_require + [
3434
# httpretty >= 1.1 duplicates requests in `httpretty.latest_requests`
@@ -74,7 +74,7 @@
7474
"Topic :: Database :: Front-Ends",
7575
],
7676
python_requires='>=3.7',
77-
install_requires=["requests"],
77+
install_requires=["pytz", "requests"],
7878
extras_require={
7979
"all": all_require,
8080
"kerberos": kerberos_require,

0 commit comments

Comments
 (0)