-
-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update poetry.lock * add tests for python 3.13 * simplifly pip implementation selection * Update CHANGELOG.rst * Update 3_about.rst * bump version 6.5.4 * remove python 3.13 numba tests
- Loading branch information
Showing
6 changed files
with
23 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "timezonefinder" | ||
version = "6.5.3" | ||
version = "6.5.4" | ||
description = "python package for finding the timezone of any point on earth (coordinates) offline" | ||
authors = ["jannikmi <[email protected]>"] | ||
license = "MIT" | ||
|
@@ -92,7 +92,8 @@ legacy_tox_ini = """ | |
[tox] | ||
isolated_build = true | ||
envlist = | ||
docs,py{38,39,310,311,312}{,-numba,-pytz} | ||
# TODO python 3.13 with numba | ||
docs,py{38,39,310,311,312}{,-numba,-pytz},py313{,-pytz} | ||
[gh-actions] | ||
python = | ||
|
@@ -101,7 +102,8 @@ legacy_tox_ini = """ | |
3.10: py310{,-numba,-pytz} | ||
3.11: py311{,-numba,-pytz} | ||
3.12: py312{,-numba,-pytz} | ||
# TODO also -numba | ||
3.13: py313{,-pytz} | ||
[testenv:docs] | ||
description = build documentation | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters