-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
601 additions
and
276 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: Release | ||
|
||
on: | ||
push: | ||
tags: | ||
- '*' | ||
|
||
jobs: | ||
release: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
id-token: write | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python 3.10 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.10" | ||
- name: Install pipenv, build dependencies | ||
run: | | ||
python -m pip install pipenv | ||
pipenv install --dev | ||
- name: Build source package | ||
run: | | ||
pipenv run python -m build --sdist | ||
- name: Build wheels | ||
run: | | ||
pipenv run python -m cibuildwheel --output-dir dist | ||
- name: Publish package | ||
uses: pypa/gh-action-pypi-publish@release/v1 |
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
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,4 +1,3 @@ | ||
include DESCRIPTION.rst | ||
include *.md | ||
include *.py | ||
include LICENSE | ||
|
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
Large diffs are not rendered by default.
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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
certifi==2021.5.30 | ||
certifi>=2021 | ||
funcsigs==1.0.2 | ||
llvmlite==0.37.0 | ||
nose==1.3.7 | ||
numpy==1.20.3 | ||
numba==0.54.0 | ||
llvmlite==0.38.* | ||
pynose==1.5.* | ||
numpy==1.21.* | ||
numba==0.55.* |
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 |
---|---|---|
|
@@ -21,22 +21,22 @@ | |
from gwlfe.MultiUse_Fxns.Runoff.WashImperv_inner import cc as wipcc | ||
from gwlfe.MultiUse_Fxns.Runoff.WashPerv_inner import cc as wpcc | ||
|
||
# Get the long description from DESCRIPTION.rst | ||
# Get the long description from README.md | ||
with open(path.join(path.abspath(path.dirname(__file__)), | ||
'DESCRIPTION.rst'), encoding='utf-8') as f: | ||
'README.md'), encoding='utf-8') as f: | ||
long_description = f.read() | ||
|
||
tests_require = [ | ||
'nose == 1.3.7', | ||
'pynose == 1.5.*', | ||
'coverage == 4.0.3' | ||
] | ||
|
||
setup( | ||
name='gwlf-e', | ||
version='3.1.0', | ||
version='3.2.0', | ||
description='A Python port of Generalized Watersheds Loading Functions - Enhanced (MapShed)', | ||
long_description=long_description, | ||
long_description_content_type='text/x-rst', | ||
long_description_content_type='text/markdown', | ||
url='https://github.com/WikiWatershed/gwlf-e', | ||
author='Azavea Inc.', | ||
author_email='[email protected]', | ||
|
@@ -52,12 +52,12 @@ | |
packages=find_packages(exclude=['test']), | ||
python_requires=">=3.7", | ||
install_requires=[ | ||
'certifi==2021.5.30', | ||
'certifi>=2021', | ||
'funcsigs==1.0.2', | ||
'llvmlite==0.37.0', | ||
'nose==1.3.7', | ||
'numpy==1.20.3', | ||
'numba==0.54.0', | ||
'llvmlite==0.38.*', | ||
'pynose==1.5.*', | ||
'numpy==1.21.*', | ||
'numba==0.55.*', | ||
], | ||
extras_require={ | ||
'dev': [], | ||
|
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