Unverified Commit 98206cc3 authored by Jay Laura's avatar Jay Laura Committed by GitHub
Browse files

Prep for 1.5.4 release (#197)

parent 12c1aede
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -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
+5 −3
Original line number Diff line number Diff line
@@ -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',
        ],
    )