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

Commit cd3fcdf

Browse files
authored
Merge pull request #51 from unity-sds/update-package-name
Update package name
2 parents 47f2156 + 533773b commit cd3fcdf

27 files changed

+90
-52
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1313
### Fixed
1414
* fixed release workflow to test against `unity-sds-client` not `unity_py`
1515
### Changed
16+
* updated package name so that imports reference `unity_sds_client` not `unity_py`
1617
### Removed
1718
### Security
1819
### Deprecated

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ The order of Authentication Parameters is as follows:
4141
### Running your first command
4242

4343
```
44-
from unity_py.unity import Unity
45-
from unity_py.unity_session import UnitySession
46-
from unity_py.unity_services import UnityServices as services
44+
from unity_sds_client.unity import Unity
45+
from unity_sds_client.unity_session import UnitySession
46+
from unity_sds_client.unity_services import UnityServices as services
4747
4848
s = Unity()
4949
dataManager = s.client(services.DATA_SERVICE)

notebooks/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## mercury-dashboard.ipynb
44

5-
An example notebook using the unity-py client to create a pseudo operator dashboard. Proof of concept and a way of defining what items need to be in the client, and what metadata/data services need to return.
5+
An example notebook using the unity-sds-client Python package to create a pseudo operator dashboard. Proof of concept and a way of defining what items need to be in the client, and what metadata/data services need to return.
66

77
### requirements
88
```

notebooks/mercury-dashboard.ipynb

Lines changed: 45 additions & 8 deletions
Large diffs are not rendered by default.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[tool.poetry]
22
name = "unity-sds-client"
3-
version = "0.1.2"
3+
version = "0.2.0"
44
description = "Unity-Py is a Python client to simplify interactions with NASA's Unity Platform."
55
authors = ["Anil Natha, Mike Gangl"]
66
readme = "README.md"
77
license = "Apache-2.0"
88
repository = "https://github.com/unity-sds/unity-py"
99
exclude = ['img', 'tests']
1010
packages = [
11-
{ include = "unity_py" },
11+
{ include = "unity_sds_client" },
1212
]
1313

1414
[tool.poetry.dependencies]

tests/test_unity_py.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
from unity_py.unity import Unity
2-
from unity_py.unity_session import UnitySession
3-
from unity_py.unity_services import UnityServices as services
1+
from unity_sds_client.unity import Unity
2+
from unity_sds_client.unity_session import UnitySession
3+
from unity_sds_client.unity_services import UnityServices as services
44

55
import pytest
66

tests/test_unity_stac.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
from unity_py.unity_exception import UnityException
2-
from unity_py.resources.collection import Collection, Dataset, DataFile
1+
from unity_sds_client.unity_exception import UnityException
2+
from unity_sds_client.resources.collection import Collection, Dataset, DataFile
33
import datetime
44
import pytest
55
import os
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)