-
Notifications
You must be signed in to change notification settings - Fork 135
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update python version requirements (#563)
- Loading branch information
Showing
2 changed files
with
4 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
__locales__ = __path__[0] + "/locales" | ||
|
||
__version__ = "2.5.4" | ||
__version__ = "2.5.5" | ||
|
||
|
||
def set_lang(lang=None): | ||
|
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta" | |
[project] | ||
name = "deafrica-tools" | ||
# reflect version changes in deafrica_tools/__init__.py | ||
version = "2.5.4" | ||
version = "2.5.5" | ||
description = "Functions and algorithms for analysing Digital Earth Africa data." | ||
authors = [{name = "Digital Earth Africa", email = "[email protected]"}] | ||
maintainers = [{name = "Digital Earth Africa", email = "[email protected]"}] | ||
|
@@ -21,10 +21,11 @@ classifiers=[ | |
'Programming Language :: Python :: 3.9', | ||
'Programming Language :: Python :: 3.10', | ||
'Programming Language :: Python :: 3.11', | ||
'Programming Language :: Python :: 3.12', | ||
'Intended Audience :: Science/Research', | ||
'Topic :: Scientific/Engineering :: GIS', | ||
] | ||
requires-python = ">=3.9,<3.12" | ||
requires-python = ">=3.9" | ||
dependencies= [ | ||
"aiohttp", | ||
"aiobotocore[boto3]", # for boto3 | ||
|