-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Updated release.md * /version 1.6.0-rc.2 [skip actions] * /version 1.6.0 [skip actions] * added build and publish for pypi * update GHA build - install python wheel Co-authored-by: nchung <[email protected]> Co-authored-by: podaac-cloud-IandA <[email protected]> Co-authored-by: Nga Chung <[email protected]>
- Loading branch information
1 parent
e0f1069
commit 2e3d47e
Showing
4 changed files
with
40 additions
and
4 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 |
---|---|---|
|
@@ -91,7 +91,7 @@ | |
"1.4.1", | ||
"1.5", | ||
"1.5.1", | ||
"1.6.0-alpha.1" | ||
"1.6.0" | ||
] | ||
}, | ||
"receivedTime": { | ||
|
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,9 +1,9 @@ | ||
## [1.5.1] - 2020-11-10 | ||
## [1.6.0] - 2022-03-10 | ||
### Added | ||
### Changed | ||
### Deprecated | ||
### Removed | ||
### Fixed | ||
- **PODAAC-2733** | ||
- Updated the CNM schema so product can be used in either the CNM notification or CNM response. | ||
- **PODAAC-4307** | ||
- Added optional dataProcessingType to product. | ||
### Security |
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
from setuptools import setup, find_packages | ||
|
||
# with open("README.md", "r", encoding="utf-8") as fh: | ||
# long_description = fh.read() | ||
|
||
with open('version.txt', "r", encoding="utf-8") as f: | ||
version = f.read().strip() | ||
|
||
setup( | ||
name="podaac-cloud-notification-message-schema", | ||
version=version, | ||
description="PO.DAAC Cloud Notification Message Schema", | ||
url='https://github.com/podaac/cloud-notification-message-schema', | ||
author='PO.DAAC', | ||
author_email='[email protected]', | ||
install_requires=[ | ||
], | ||
extras_require={ | ||
'testing': [ | ||
'pytest==5.3.5' | ||
] | ||
}, | ||
packages=find_packages(exclude=['tests']), | ||
include_package_data=True | ||
) |