Skip to content

Commit

Permalink
Numpy 2.0 support (#235)
Browse files Browse the repository at this point in the history
* allow numpy 2.0

* v6.5.2
  • Loading branch information
jannikmi authored Jun 17, 2024
1 parent 02f6a09 commit bc9f87e
Show file tree
Hide file tree
Showing 3 changed files with 64 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
Changelog
=========

6.5.2 (2024-06-17)
------------------

* added support for numpy>=2.0 (fixes issue #234)


6.5.1 (2024-06-14)
------------------
Expand Down
56 changes: 55 additions & 1 deletion poetry.lock

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

7 changes: 4 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "timezonefinder"
version = "6.5.1"
version = "6.5.2"
description = "python package for finding the timezone of any point on earth (coordinates) offline"
authors = ["jannikmi <[email protected]>"]
license = "MIT"
Expand Down Expand Up @@ -33,9 +33,10 @@ timezonefinder = "timezonefinder.command_line:main"
[tool.poetry.dependencies]
python = ">=3.8,<4"
# https://numpy.org/neps/nep-0029-deprecation_policy.html
# numpy 1.21+ required for python 3.8
numpy = [
{ version = ">=1.21,<2", python = "<3.9" },
{ version = ">=1.23,<2", python = ">=3.9" }
{ version = ">=1.21,<3", python = "<3.9" },
{ version = ">=1.23,<3", python = ">=3.9" }
]
h3 = ">=3.7.6,<4" # python3.11 support
cffi = ">=1.15.1,<2"
Expand Down

0 comments on commit bc9f87e

Please sign in to comment.