From 98206cc34213c10c00f6600c6cfcac4cdf68b1a0 Mon Sep 17 00:00:00 2001 From: Jay Laura <jlaura@usgs.gov> Date: Fri, 28 Jul 2023 09:18:38 -0700 Subject: [PATCH] Prep for 1.5.4 release (#197) --- CHANGELOG.md | 1 + setup.py | 8 +++++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ab23f36..cc66409 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 c63f2b8..a2406a0 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', ], ) -- GitLab