-
Notifications
You must be signed in to change notification settings - Fork 444
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
RFE: use zoneinfo
instead of pytz
#1088
Comments
Babel still supports Python 3.8 which doesn't have See setup.py: python_requires='>=3.8',
packages=['babel', 'babel.messages', 'babel.localtime'],
package_data={"babel": ["py.typed"]},
include_package_data=True,
install_requires=[
# This version identifier is currently necessary as
# pytz otherwise does not install on pip 1.4 or
# higher.
# Python 3.9 and later include zoneinfo which replaces pytz
'pytz>=2015.7; python_version<"3.9"',
], |
Oct this year 3.8 will be EOSed. |
At some point, dropping support for Is there something |
FYI Python 3.8 will be EOSed Oct this year, |
@kloczek I am aware. Babel has traditionally supported slightly older Python versions as well due to the broad userbase :) |
Switch to standard
zoneinfo
module.Below may help pydantic/pydantic-core@fd262933
The text was updated successfully, but these errors were encountered: