-
Notifications
You must be signed in to change notification settings - Fork 108
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update rasterio requirement * remove python 3.7 * update changelog
- Loading branch information
1 parent
c6b097a
commit 92ea1ab
Showing
3 changed files
with
25 additions
and
18 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "rio-tiler" | ||
description = "User friendly Rasterio plugin to read raster datasets." | ||
readme = "README.md" | ||
requires-python = ">=3.7" | ||
requires-python = ">=3.8" | ||
license = {file = "LICENSE"} | ||
authors = [ | ||
{name = "Vincent Sarago", email = "[email protected]"}, | ||
|
@@ -12,9 +12,9 @@ classifiers = [ | |
"Intended Audience :: Information Technology", | ||
"Intended Audience :: Science/Research", | ||
"License :: OSI Approved :: BSD License", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Topic :: Scientific/Engineering :: GIS", | ||
] | ||
dynamic = ["version"] | ||
|
@@ -28,7 +28,7 @@ dependencies = [ | |
"morecantile>=3.1,<4.0", | ||
"pydantic", | ||
"pystac>=0.5.4", | ||
"rasterio>=1.1.7", | ||
"rasterio>=1.3.0", | ||
"rio-color", | ||
"importlib_resources>=1.1.0; python_version < '3.9'", | ||
] | ||
|