Skip to content

Commit 5788e3b

Browse files
authored
Merge branch 'main' into reduce_etas
2 parents 64dcb10 + 49eda98 commit 5788e3b

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

.github/workflows/docs.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ jobs:
1010
deploy:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v4
14-
- uses: actions/setup-python@v5
13+
- uses: actions/checkout@v6
14+
- uses: actions/setup-python@v6
1515
with:
1616
python-version: 3.x
1717
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV

.github/workflows/python-publish.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ jobs:
1515
runs-on: ubuntu-latest
1616

1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v6
1919
- name: Set up Python
20-
uses: actions/setup-python@v5
20+
uses: actions/setup-python@v6
2121
with:
2222
python-version: '3.x'
2323
- name: Install dependencies
@@ -27,4 +27,4 @@ jobs:
2727
- name: Build package
2828
run: python -m build
2929
- name: Publish package
30-
uses: pypa/gh-action-pypi-publish@v1.12.4
30+
uses: pypa/gh-action-pypi-publish@v1.13.0

.github/workflows/pythonpackage.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ jobs:
1818
run:
1919
shell: bash
2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v6
2222
- name: Set up Python ${{ matrix.python-version }}
23-
uses: actions/setup-python@v5
23+
uses: actions/setup-python@v6
2424
with:
2525
python-version: ${{ matrix.python-version }}
2626
cache: 'pip'
@@ -48,9 +48,9 @@ jobs:
4848
run:
4949
shell: bash
5050
steps:
51-
- uses: actions/checkout@v4
51+
- uses: actions/checkout@v6
5252
- name: Set up Python ${{ matrix.python-version }}
53-
uses: actions/setup-python@v5
53+
uses: actions/setup-python@v6
5454
with:
5555
python-version: ${{ matrix.python-version }}
5656
cache: 'pip'

requirements.txt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
# This is used to build the CI test environment and so Github can track dependencies.
22
xarray==2025.1.2
3-
pandas==2.2.3
3+
pandas==2.3.3
44
numpy==1.26.4
55
matplotlib==3.10.1
66
dask[array, distributed]==2025.2.0
7-
requests==2.32.3
8-
statsmodels==0.14.4
9-
pytest==8.3.5
10-
pytest-cov==6.2.1
7+
requests==2.32.5
8+
statsmodels==0.14.5
9+
pytest==8.4.2
10+
pytest-cov==7.0.0
1111
zarr==2.18.4
1212
ruff==0.8.6
1313
netcdf4==1.7.2
14-
h5netcdf==1.6.1
14+
h5netcdf==1.7.3
1515
impactlab-tools==0.6.0
1616
p_tqdm==1.4.2
17-
pyarrow==19.0.1
17+
pyarrow==21.0.0
1818
numcodecs==0.15.1
1919
scipy==1.15.3

0 commit comments

Comments
 (0)