Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1.6.0 release prep #212

Merged
merged 4 commits into from
Nov 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ release.
-->

## [Unreleased]

# [1.6.0]()

### Added
- Hard coded support for `csminit`ed cubes that have serial numbers that differ from `spiceinit`ed cubes.
- Added support for scale and offset for GeoDataset objects.
Expand Down
46 changes: 45 additions & 1 deletion code.json
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,51 @@
"date": {
"metadataLastUpdated": "2023-09-19"
}
}, {
},
{
"name": "plio",
"organization": "U.S. Geological Survey",
"description": "A planetary surface data input/output library written in Python.",
"version": "v1.6.0",
"status": "Development",

"permissions": {
"usageType": "openSource",
"licenses": [
{
"name": "Public Domain, CC0-1.0",
"URL": "https://code.usgs.gov/astrogeology/plio/-/raw/v1.6.0/LICENSE.md"
}
]
},
"homepageURL": "https://plio.readthedocs.io/en/latest/?badge=latest",
"downloadURL": "https://code.usgs.gov/astrogeology/plio/-/archive/v1.6.0/plio-v1.6.0.zip",
"disclaimerURL": "https://code.usgs.gov/astrogeology/plio/-/raw/v1.6.0/DISCLAIMER.md",
"repositoryURL": "https://code.usgs.gov/astrogeology/plio.git",
"vcs": "git",
"laborHours": 1000,

"tags": [
"Planetary",
"Remote Sensing",
"Photogrammetry",
"Data Processing"
],

"languages": [
"python"
],

"contact": {
"name": "Kelvin Rodriguez",
"email": "krodriguez@usgs.gov"
},

"date": {
"metadataLastUpdated": "2023-02-23"
}
},
{
"name": "plio",
"organization": "U.S. Geological Survey",
"description": "A planetary surface data input/output library written in Python.",
Expand Down
6 changes: 3 additions & 3 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ requirements:
- python
- setuptools
- numpy
- pvl >= 1.3.0
- pvl>=1.3.0
- protobuf
- icu
- h5py
Expand All @@ -35,7 +35,7 @@ requirements:
- python
- setuptools
- numpy
- pvl >= 1.3.0
- pvl>=1.3.0
- protobuf
- icu
- h5py
Expand All @@ -56,4 +56,4 @@ test:

about:
home: http://github.com/USGS-Astrogeology/plio
license: Public Domain
license: Public Domain
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
def setup_package():
setup(
name = "plio",
version = '1.5.5',
version = '1.6.0',
author = "USGS Astrogeology",
author_email = "jlaura@usgs.gov",
description = ("I/O API to support planetary data formats."),
Expand Down
Loading