Skip to content

Commit

Permalink
Bumping versions for Docker image (#248)
Browse files Browse the repository at this point in the history
* Bumping versions. Docker image is being upgraded and wrfhydropy needs to be updated to work with it

* Bumping python version since Micromamba numba version is failing

* Bumping numpy version to match other requirement files

* Bumping actions/checkout to v4 to fix Node 16 to Node 20 change

* Bumping actions/checkout python to v5 to fix Node 16 to Node 20 deprecation
  • Loading branch information
scrasmussen authored Feb 16, 2024
1 parent ef3bd2d commit 15b74f6
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 18 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ jobs:
shell: bash
steps:
- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4

#- name: Set environment variables
# run: |

- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.10"
python-version: "3.11"

- name: Upgrade pip and install build and twine
run: |
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
# uses: actions/checkout@v3

# - name: Setup Python
# uses: actions/setup-python@v4
# uses: actions/setup-python@v5
# with:
# python-version: 3.10

Expand Down Expand Up @@ -112,10 +112,10 @@ jobs:
# os: [ "ubuntu-latest", "macos-latest", "windows-latest" ]
# for debugging purposes run github actions only on ubuntu-latest until its passing
os: [ "ubuntu-latest" ]
python-version: [ "3.10" ]
python-version: [ "3.11" ]
steps:
- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set environment variables
run: |
Expand All @@ -128,7 +128,7 @@ jobs:
# version: 11

# - name: Setup Python
# uses: actions/setup-python@v4
# uses: actions/setup-python@v5
# with:
# python-version: ${{ matrix.python-version }}
# architecture: x64
Expand Down
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ deepdiff>=6.2.3
f90nml>=1.2
importlib-metadata==4.13.0
netCDF4>=1.5.3
numpy==1.22.4
numpy>=1.23.5
pandas>=1.3.5
properscoring==0.1
pytest>=5.4.1
pytest<=7.4.4
pytest-html>=3.0.0
pytest-datadir-ng>=1.1.1
pytest-lazy-fixture>=0.6.3
requests>=2.23.0
spotpy>=1.6.0
urllib3==1.26.18
urllib3>=2.0.2
xarray>=0.19
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name='wrfhydropy',
version='0.0.18',
version='0.0.21',
packages=find_packages(),
package_data={'wrfhydropy': ['core/data/*']},
url='https://github.com/NCAR/wrf_hydro_py',
Expand All @@ -14,20 +14,20 @@
'boltons>=20.2.1',
'bs4>=0.0.1',
'dask[bag]>=2.14.0',
'deepdiff==6.2.3',
'deepdiff>=6.2.3',
'f90nml>=1.2',
'importlib-metadata==4.13.0',
'netCDF4>=1.5.3',
'numpy==1.22.4',
'numpy>=1.23.5',
'pandas>=1.3.5',
'properscoring==0.1',
'pytest>=5.4.1',
'pytest<=7.4.4',
'pytest-html>=3.0.0',
'pytest-datadir-ng>=1.1.1',
'pytest-lazy-fixture>=0.6.3',
'requests>=2.23.0',
'spotpy>=1.6.0',
'urllib3==1.26.18',
'urllib3>=2.0.2',
'xarray>=0.19'
],
author='WRF-Hydro Team',
Expand Down
6 changes: 3 additions & 3 deletions whp_test_env.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ dependencies:
- deepdiff==6.3.0
- f90nml>=1.2
- netCDF4>=1.5.3
- numpy==1.22.0
- numpy>=1.23.5
- pandas>=1.0.3
- pathlib==1.0.1
- pathlib>=1.0.1
- properscoring==0.1
- pytest>=5.4.1
- pytest<=7.4.4
- pytest-html>=3.0.0
- pytest-lazy-fixture>=0.6.3
- requests>=2.23.0
Expand Down

0 comments on commit 15b74f6

Please sign in to comment.