Skip to content
This repository was archived by the owner on Sep 9, 2024. It is now read-only.

Commit 47f2156

Browse files
authored
Merge pull request #46 from unity-sds/release-client-fix
Release client fix
2 parents 38a859e + b87da94 commit 47f2156

File tree

3 files changed

+18
-3
lines changed

3 files changed

+18
-3
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
python -m pip install --upgrade pip
5858
5959
# Retry 3 times before the steps actually fails because sometimes it takes a minute for pip to recognize the new version
60-
(echo "pip Install Attempt: 1" && pip install --force unity_py==${{ needs.release.outputs.publishedVersion }}) || \
61-
(echo "pip Install Attempt: 2" && pip install --force unity_py==${{ needs.release.outputs.publishedVersion }}) || \
62-
(echo "pip Install Attempt: 3" && pip install --force unity_py==${{ needs.release.outputs.publishedVersion }}) || \
60+
(echo "pip Install Attempt: 1" && pip install --force unity-sds-client==${{ needs.release.outputs.publishedVersion }}) || \
61+
(echo "pip Install Attempt: 2" && pip install --force unity-sds-client==${{ needs.release.outputs.publishedVersion }}) || \
62+
(echo "pip Install Attempt: 3" && pip install --force unity-sds-client==${{ needs.release.outputs.publishedVersion }}) || \
6363
(echo "pip Install Step Failed" && exit 1)

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
--------
99

10+
## UNRELEASED
11+
12+
### Added
13+
### Fixed
14+
* fixed release workflow to test against `unity-sds-client` not `unity_py`
15+
### Changed
16+
### Removed
17+
### Security
18+
### Deprecated
19+
1020
## [0.1.2] - 2023-06-28
1121

1222
### Added

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ Unity-Py is a Python client to simplify interactions with NASA's Unity Platform.
44

55
## Installation
66

7+
### Install from pypi
8+
```
9+
pip install unity-sds-client
10+
```
11+
712
### Install from Github
813
```
914
python -m pip install git+https://github.com/unity-sds/unity-py.git

0 commit comments

Comments
 (0)