Skip to content

Commit

Permalink
less strict dep specs
Browse files Browse the repository at this point in the history
  • Loading branch information
jannikmi committed Mar 14, 2024
1 parent 3f6c038 commit dd90abc
Show file tree
Hide file tree
Showing 2 changed files with 73 additions and 5 deletions.
68 changes: 66 additions & 2 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 7 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,17 +31,21 @@ timezonefinder = "timezonefinder.command_line:main"

[tool.poetry.dependencies]
python = ">=3.8,<4"
# https://numpy.org/neps/nep-0029-deprecation_policy.html
numpy = [
{ version = "<1.25", python = "<3.9"},
{ version = ">=1.25,<2", python = ">=3.9"}
{ version = ">=1.21,<2", python = "<3.9" },
{ version = ">=1.23,<2", python = ">=3.9" }
]
h3 = ">=3.7.6,<4" # python3.11 support
cffi = ">=1.15.1,<2"
# build dependencies. workaround to always have these installed
setuptools = ">=65.5"

# optional dependencies (extras)
numba = { version = ">=0.56", optional = true }
numba = [
{ version = ">=0.56,<1", python = "<3.12", optional = true },
{ version = ">=0.59,<1", python = ">=3.12", optional = true }
]
pytz = { version = ">=2022.7.1", optional = true }

[tool.poetry.group.docs]
Expand Down

0 comments on commit dd90abc

Please sign in to comment.