diff --git a/CHANGELOG.md b/CHANGELOG.md index ab23f36f0fd60aa7f94bc0511818a1f3a90414fb..cc664092e252a8e4d93211a0a1c88b75220ce110 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -35,6 +35,7 @@ release. ## [Unreleased] +## [1.5.4]() ### Fixed - Tests for gdal > 3 and pvl > 1.0. This includes fixing the `k` value on the MOLA polar stereographic test data and updating the proj string for GDAL > 3 (new fields are included). - Conditional GDAL import to support gdal > 3.0 diff --git a/setup.py b/setup.py index c63f2b88e96bea0119b2cf739baea8004f2e3a7b..a2406a0a9633f2b85c4c35fa8ae9080a7f45589f 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ with open('README.md', 'r') as f: def setup_package(): setup( name = "plio", - version = '1.5.2', + version = '1.5.4', author = "USGS Astrogeology", author_email = "jlaura@usgs.gov", description = ("I/O API to support planetary data formats."), @@ -35,12 +35,14 @@ def setup_package(): 'scipy'], extras_require={'io_gdal' : "gdal"}, classifiers=[ - "Development Status :: 3 - Alpha", + "Development Status :: 5 - Production/Stable", "Topic :: Utilities", "License :: Public Domain", - 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', ], )