Skip to content

Commit da8484e

Browse files
authored
Update dependencies (#1097)
1 parent 416c889 commit da8484e

File tree

10 files changed

+13764
-13707
lines changed

10 files changed

+13764
-13707
lines changed

.github/workflows/check-data-catalogs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- uses: actions/checkout@v3
3232
- uses: prefix-dev/[email protected]
3333
with:
34-
pixi-version: "v0.21.1"
34+
pixi-version: "v0.34.0"
3535
environments: min-py311
3636
- name: Prepare pixi
3737
run: |

.github/workflows/create-release-artifacts.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
fetch-depth: 0
6464
- uses: prefix-dev/[email protected]
6565
with:
66-
pixi-version: "v0.21.1"
66+
pixi-version: "v0.34.0"
6767
environments: full-py311
6868

6969
- name: Generate docs

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
uses: actions/checkout@v4
3636
- uses: prefix-dev/[email protected]
3737
with:
38-
pixi-version: "v0.21.1"
38+
pixi-version: "v0.34.0"
3939
environments: full-py311
4040
- name: Prepare pixi
4141
run: |

.github/workflows/pixi_auto_update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
ssh-key: ${{ secrets.SSH_PRIVATE_KEY }}
1717
- uses: prefix-dev/[email protected]
1818
with:
19-
pixi-version: "v0.21.1"
19+
pixi-version: "v0.34.0"
2020
cache: false
2121
- name: Update pixi lock file
2222
run: |

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
- uses: actions/checkout@v4
5151
- uses: prefix-dev/[email protected]
5252
with:
53-
pixi-version: "v0.21.1"
53+
pixi-version: "v0.34.0"
5454
environments: full-py${{ matrix.python-version }}
5555
- name: Prepare pixi
5656
run: |

Dockerfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
FROM debian:bookworm-slim AS base
22
ARG PIXIENV
3-
RUN apt-get update && apt-get install -y curl
3+
RUN apt-get update && apt-get install -y curl && apt clean && useradd deltares
44

5-
RUN useradd deltares
65
USER deltares
76
WORKDIR /home/deltares
87

9-
RUN curl --proto="https" -fsSL https://pixi.sh/install.sh | bash
8+
RUN curl --proto "=https" -fsSL https://pixi.sh/install.sh | bash
109
ENV PATH=/home/deltares/.pixi/bin:$PATH
1110
COPY pixi.toml pixi.lock pyproject.toml README.rst ./
1211
COPY data/ ./data

docs/changelog.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,11 @@ New
1515

1616
Changed
1717
-------
18+
- Rasterio have as been limited to ``<1.4.0`` (#1097)
1819

1920
Fixed
2021
-----
21-
- Fixed incorrect arguments causing crashes in geom_component._region_data() (#1091)
22+
- Fixed incorrect arguments causing crashes in ``geom_component._region_data()`` (#1091)
2223

2324
Deprecated
2425
----------

pixi.lock

Lines changed: 13753 additions & 13696 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pixi.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ pyogrio = ">=0.6"
174174
pyproj = "*"
175175
pystac = "*"
176176
pyyaml = "*"
177-
rasterio = "*"
177+
rasterio = "<1.4.0"
178178
requests = "*"
179179
rioxarray = "*"
180180
scipy = "*"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ dependencies = [
3232
"pyproj", # projections for Coordinate reference systems
3333
"pystac", # STAC integration
3434
"pyyaml", # yaml interface
35-
"rasterio", # raster wrapper around gdal
35+
"rasterio<1.4.0", # raster wrapper around gdal
3636
"requests", # donwload stuff
3737
"rioxarray", # wraps rasterio and xarray. Almost superceded by hydromt/raster.py
3838
"scipy", # scientific utilities

0 commit comments

Comments
 (0)