Skip to content

Commit

Permalink
Remove incorrect upper bound from pytz dependency
Browse files Browse the repository at this point in the history
Change the `pytz` dependency to use the `>=` operator rather than `^`,
in order to allow installing newer versions.  `pytz` uses calendar
versioning rather than semantic versioning, so the `^` operator is
meaningless there.  Furthermore, since `pytz` version corresponds
to the timezone data release, allowing the newest version is important
to permit using up-to-date tzinfo.
  • Loading branch information
mgorny committed Mar 31, 2023
1 parent a57e3ee commit 282b9bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ include = [

[tool.poetry.dependencies]
python = "^3.7"
pytz = "^2022.7"
pytz = ">=2022.7"
Flask = "^2.0.0"
Babel = "^2.11.0"
Jinja2 = "^3.1.2"
Expand Down

0 comments on commit 282b9bd

Please sign in to comment.