Skip to content

Commit 50d6dbe

Browse files
authored
Merge pull request #383 from ASFHyP3/develop
Release v7.7.3
2 parents 95777f3 + a8d9085 commit 50d6dbe

File tree

5 files changed

+17
-8
lines changed

5 files changed

+17
-8
lines changed

.github/workflows/distribute.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
run:
1818
shell: bash -l {0}
1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v5
2121
with:
2222
fetch-depth: 0
2323

@@ -31,7 +31,7 @@ jobs:
3131
python -m build
3232
3333
- name: upload to PyPI.org
34-
uses: pypa/gh-action-pypi-publish@v1.12.4
34+
uses: pypa/gh-action-pypi-publish@v1.13.0
3535
with:
3636
user: __token__
3737
password: ${{ secrets.TOOLS_PYPI_PAK }}

CHANGELOG.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [PEP 440](https://www.python.org/dev/peps/pep-0440/)
77
and uses [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
88

9+
## [7.7.3]
10+
11+
### Added
12+
* Add alias for `hyp3-plus` API URL.
13+
914
## [7.7.2]
1015

1116
### Fixed
@@ -14,13 +19,13 @@ and uses [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
1419
## [7.7.1]
1520

1621
### Changed
17-
* [SDK example notebook](https://github.com/ASFHyP3/hyp3-sdk/blob/main/docs/sdk_example.ipynb) now references the [HyP3 authentication notebook](https://github.com/ASFHyP3/hyp3-sdk/blob/main/docs/hyp3_authentication.ipynb) in the authentication section.
18-
* The [hyp3-docs authentication documentation page](https://hyp3-docs.asf.alaska.edu/using/authentication/) is linked in the [HyP3 authentication notebook](https://github.com/ASFHyP3/hyp3-sdk/blob/main/docs/hyp3_authentication.ipynb).
22+
* [SDK example notebook](https://github.com/ASFHyP3/hyp3-sdk/blob/main/docs/sdk_example.ipynb) now references the [HyP3 authentication notebook](https://github.com/ASFHyP3/hyp3-sdk/blob/main/docs/hyp3_authentication.ipynb) in the authentication section.
23+
* The [hyp3-docs authentication documentation page](https://hyp3-docs.asf.alaska.edu/using/authentication/) is linked in the [HyP3 authentication notebook](https://github.com/ASFHyP3/hyp3-sdk/blob/main/docs/hyp3_authentication.ipynb).
1924

2025
## [7.7.0]
2126

2227
### Added
23-
* Added support for using an [Earthdata Login Bearer Token](https://urs.earthdata.nasa.gov/documentation/for_users/user_token) when authenticating the `HyP3` object.
28+
* Added support for using an [Earthdata Login Bearer Token](https://urs.earthdata.nasa.gov/documentation/for_users/user_token) when authenticating the `HyP3` object.
2429

2530
## [7.6.0]
2631
### Changed

requirements-static.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
ruff==0.12.5
2-
mypy==1.17.0
1+
ruff==0.13.1
2+
mypy==1.18.2

src/hyp3_sdk/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from importlib.metadata import version
44

55
from . import util
6-
from .hyp3 import PROD_API, TEST_API, HyP3
6+
from .hyp3 import PLUS_API, PLUS_TEST_API, PROD_API, TEST_API, HyP3
77
from .jobs import Batch, Job
88

99

@@ -16,5 +16,7 @@
1616
'Job',
1717
'PROD_API',
1818
'TEST_API',
19+
'PLUS_API',
20+
'PLUS_TEST_API',
1921
'util',
2022
]

src/hyp3_sdk/hyp3.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616

1717
PROD_API = 'https://hyp3-api.asf.alaska.edu'
1818
TEST_API = 'https://hyp3-test-api.asf.alaska.edu'
19+
PLUS_API = 'https://hyp3-plus.asf.alaska.edu'
20+
PLUS_TEST_API = 'https://hyp3-plus-test.asf.alaska.edu'
1921

2022

2123
class HyP3:

0 commit comments

Comments
 (0)