-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* initial implementaiton of subset code * added tests, more updates * removed skip_errors (not implemented yet) * Upgrade to harmony-py 0.4.9 * subsetting capability initial commit * update spacing * Update docs * update poetry lock * upgrade to poetry 1.5.1 (latest) * fix failing checksum test * fixed regression test issues * bump poetry version in second gh action file * Update poetry version to fix build issue * bump poetry version * bump poetry version * bump version to 1.15.0 * bump version to 1.15.0 * Fixed bug introduced in issues/36 where valid bboxes were raising an exception * bump version to 1.15.0-a.2 * Add error if both cycle and subset are provided * If verbose, output Harmony job details. Also allow temporal and spatial bounds to be OPTIONAL so users don't have to provide these values. * Added log message to indicate harmony job is submitted and waiting * fixed cycle check typo * dry run + subset * idl check * bump version to a3 * fix failing unit test to correct value returned by CMR (#155) --------- Co-authored-by: mike-gangl <[email protected]>
- Loading branch information
1 parent
aebd818
commit e8f961d
Showing
15 changed files
with
1,003 additions
and
335 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,7 @@ jobs: | |
- name: Install Poetry | ||
uses: abatilo/[email protected] | ||
with: | ||
poetry-version: 1.1.14 | ||
poetry-version: '1.5.1' | ||
- name: Install dependencies | ||
run: | | ||
poetry install | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "podaac-data-subscriber" | ||
version = "1.14.0" | ||
version = "1.15.0-alpha.3" | ||
description = "PO.DAAC Data Subscriber Command Line Tool" | ||
authors = ["PO.DAAC <[email protected]>"] | ||
readme = "README.md" | ||
|
@@ -16,6 +16,7 @@ python = "^3.7" | |
requests = "^2.27.1" | ||
tenacity = "^8.0.1" | ||
packaging = "^23.0" | ||
harmony-py = "^0.4.9" | ||
|
||
[tool.poetry.dev-dependencies] | ||
pytest = "^7.1.2" | ||
|
Oops, something went wrong.