-
Notifications
You must be signed in to change notification settings - Fork 249
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release version 3.9.0, Merge pull request #445 from sentinel-hub/develop
Release version 3.9.0
- Loading branch information
Showing
66 changed files
with
1,645 additions
and
1,281 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
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 was deleted.
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,22 +1,15 @@ | ||
# Makefile for creating a new release of the package and uploading it to PyPI | ||
# This way is preferred to manual because it also resets config.json | ||
|
||
PYTHON = python3 | ||
CONFIG = sentinelhub.config | ||
|
||
help: | ||
@echo "Use 'make upload' to reset config.json and upload the package to PyPi" | ||
|
||
reset-config: | ||
$(CONFIG) --reset | ||
@echo "Use 'make upload' to upload the package to PyPi" | ||
|
||
upload: reset-config | ||
upload: | ||
rm -r dist | true | ||
$(PYTHON) setup.py sdist | ||
python -m build --sdist --wheel | ||
twine upload --skip-existing dist/* | ||
|
||
# For testing: | ||
test-upload: reset-config | ||
test-upload: | ||
rm -r dist | true | ||
$(PYTHON) setup.py sdist | ||
python -m build --sdist --wheel | ||
twine upload --repository testpypi --skip-existing dist/* |
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
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
Oops, something went wrong.