diff --git a/CHANGELOG.md b/CHANGELOG.md index 7e29718..6918aef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) +## 1.13.1 +### Fixed +- Fixed an issue where a required library wasn't being included in the installation. + ## 1.13.0 ### Added - Added --dry-run option to subscriber and downloader to view the files that _would_ be downloaded without actuall downloading them. [102](https://github.com/podaac/data-subscriber/issues/102) diff --git a/pyproject.toml b/pyproject.toml index 0cfffb3..78dcce4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "podaac-data-subscriber" -version = "1.13.0" +version = "1.13.1" description = "PO.DAAC Data Subscriber Command Line Tool" authors = ["PO.DAAC "] readme = "README.md" @@ -15,6 +15,7 @@ packages = [ python = "^3.7" requests = "^2.27.1" tenacity = "^8.0.1" +packaging = "^23.0" [tool.poetry.dev-dependencies] pytest = "^7.1.2" diff --git a/subscriber/podaac_access.py b/subscriber/podaac_access.py index 3c19d7a..8742141 100644 --- a/subscriber/podaac_access.py +++ b/subscriber/podaac_access.py @@ -30,7 +30,7 @@ import tenacity from datetime import datetime -__version__ = "1.13.0" +__version__ = "1.13.1" extensions = ["\\.nc", "\\.h5", "\\.zip", "\\.tar.gz", "\\.tiff"] edl = "urs.earthdata.nasa.gov" cmr = "cmr.earthdata.nasa.gov"