Skip to content

Commit

Permalink
update url in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
OuyangWenyu committed Mar 28, 2024
1 parent 1a6a258 commit dacb670
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.x"
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand All @@ -27,4 +27,4 @@ jobs:
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
python setup.py sdist bdist_wheel
twine upload dist/*
twine upload dist/*
1 change: 1 addition & 0 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ jobs:
run: |
echo 'local_data_path:' > hydro_setting.yml
echo ' datasets-origin: /home/runner/.cache/' >> hydro_setting.yml
sudo cp hydro_setting.yml /home/runner/hydro_setting.yml
# Add other settings here as required
- name: PKG-TEST
run: |
Expand Down
8 changes: 3 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"""
Author: Wenyu Ouyang
Date: 2023-10-28 09:16:46
LastEditTime: 2024-03-28 11:20:44
LastEditTime: 2024-03-28 12:07:42
LastEditors: Wenyu Ouyang
Description: The setup script
FilePath: \hydromodel\setup.py
Expand Down Expand Up @@ -36,14 +36,12 @@
setup(
author="Wenyu Ouyang",
author_email="[email protected]",
python_requires=">=3.9",
python_requires=">=3.10",
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
Expand All @@ -65,7 +63,7 @@
setup_requires=setup_requirements,
test_suite="tests",
tests_require=test_requirements,
url="https://github.com/iHeadWater/hydromodel",
url="https://github.com/OuyangWenyu/hydromodel",
version='0.2.1',
zip_safe=False,
)

0 comments on commit dacb670

Please sign in to comment.