Skip to content

Commit 01fd9bc

Browse files
deltares-service-accountTeamcityManangka
authored
[TEAMCITY] Update project dependencies (#1801)
Teamcity automatically updated the dependencies defined the pixi.toml file. Please verify that all tests succeed before merging # Dependencies <details open> <summary>Explicit dependencies</summary> |Dependency|Before|After|Change|Environments| |-|-|-|-|-| |[mypy](https://prefix.dev/channels/conda-forge/packages/mypy)|1.19.1|1.20.0|Minor Upgrade|{default, interactive, user-acceptance} on *all platforms*| |[numba](https://prefix.dev/channels/conda-forge/packages/numba)|0.64.0|0.65.0|Minor Upgrade|{default, interactive, user-acceptance} on *all platforms*| |[pydata-sphinx-theme](https://prefix.dev/channels/conda-forge/packages/pydata-sphinx-theme)|0.16.1|0.17.0|Minor Upgrade|{default, interactive, user-acceptance} on *all platforms*| |[dvc](https://prefix.dev/channels/conda-forge/packages/dvc)|3.67.0|3.67.1|Patch Upgrade|user-acceptance on *all platforms*| |[pandas](https://prefix.dev/channels/conda-forge/packages/pandas)|3.0.1|3.0.2|Patch Upgrade|{default, interactive, user-acceptance} on *all platforms*| |[ruff](https://prefix.dev/channels/conda-forge/packages/ruff)|0.15.8|0.15.9|Patch Upgrade|{default, interactive, user-acceptance} on *all platforms*| |[xugrid](https://prefix.dev/channels/conda-forge/packages/xugrid)|0.15.0|0.15.1|Patch Upgrade|{default, interactive, user-acceptance} on *all platforms*| </details> <details> <summary>Implicit dependencies</summary> |Dependency|Before|After|Change|Environments| |-|-|-|-|-| |[more-itertools](https://prefix.dev/channels/conda-forge/packages/more-itertools)|10.8.0|11.0.1|Major Upgrade|{default, interactive, user-acceptance} on *all platforms*| |[python-tzdata](https://prefix.dev/channels/conda-forge/packages/python-tzdata)|2025.3|2026.1|Major Upgrade|{interactive, user-acceptance} on *all platforms*<br/>default on win-64| |[xyzservices](https://prefix.dev/channels/conda-forge/packages/xyzservices)|2025.11.0|2026.3.0|Major Upgrade|{default, interactive, user-acceptance} on *all platforms*| |[libuuid](https://prefix.dev/channels/conda-forge/packages/libuuid)|2.41.3|2.42|Minor Upgrade|*all envs* on linux-64| |[llvmlite](https://prefix.dev/channels/conda-forge/packages/llvmlite)|0.46.0|0.47.0|Minor Upgrade|{default, interactive, user-acceptance} on *all platforms*| |[pygments](https://prefix.dev/channels/conda-forge/packages/pygments)|2.19.2|2.20.0|Minor Upgrade|{default, interactive, pixi-update, user-acceptance} on *all platforms*| |[aiohttp](https://prefix.dev/channels/conda-forge/packages/aiohttp)|3.13.4|3.13.5|Patch Upgrade|{default, interactive, user-acceptance} on *all platforms*| |[charset-normalizer](https://prefix.dev/channels/conda-forge/packages/charset-normalizer)|3.4.6|3.4.7|Patch Upgrade|{default, interactive, user-acceptance} on *all platforms*| |[jupyter-lsp](https://prefix.dev/channels/conda-forge/packages/jupyter-lsp)|2.3.0|2.3.1|Patch Upgrade|interactive on *all platforms*| |[lib4sbom](https://pypi.org/project/lib4sbom)|0.10.2|0.10.3|Patch Upgrade|{default, interactive, user-acceptance} on *all platforms*| |[orjson](https://prefix.dev/channels/conda-forge/packages/orjson)|3.11.7|3.11.8|Patch Upgrade|user-acceptance on *all platforms*| |[pygit2](https://prefix.dev/channels/conda-forge/packages/pygit2)|1.19.1|1.19.2|Patch Upgrade|user-acceptance on win-64| |[requests](https://prefix.dev/channels/conda-forge/packages/requests)|2.33.0|2.33.1|Patch Upgrade|{default, interactive, user-acceptance} on *all platforms*| |[scmrepo](https://prefix.dev/channels/conda-forge/packages/scmrepo)|3.6.1|3.6.2|Patch Upgrade|user-acceptance on *all platforms*| |[sdl3](https://prefix.dev/channels/conda-forge/packages/sdl3)|3.4.2|3.4.4|Patch Upgrade|{default, interactive, user-acceptance} on win-64| |[typer](https://prefix.dev/channels/conda-forge/packages/typer)|0.24.0|0.24.1|Patch Upgrade|user-acceptance on *all platforms*| </details> [^1]: **Bold** means explicit dependency. [^2]: Dependency got downgraded. --------- Co-authored-by: Teamcity <teamcity@deltares.nl> Co-authored-by: Sunny Titus <sunny.titus@deltares.nl>
1 parent e40db42 commit 01fd9bc

6 files changed

Lines changed: 535 additions & 513 deletions

File tree

imod/mf6/model.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,11 +75,11 @@ def _create_boundary_condition_for_unassigned_boundary(
7575
pkg for _, pkg in model.items() if isinstance(pkg, pkg_type)
7676
]
7777

78-
additional_boundaries = [
78+
filtered_boundaries: list[StateType] = [
7979
item for item in additional_boundaries or [] if item is not None
8080
]
8181

82-
constant_state_packages.extend(additional_boundaries)
82+
constant_state_packages.extend(filtered_boundaries)
8383

8484
return create_clipped_boundary(
8585
model.domain, state_for_boundary, constant_state_packages, pkg_type

imod/mf6/multimodel/exchange_creator.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ def create_gwfgwf_exchanges(
155155
GWFGWF(
156156
f"{model_name}_{model_id1}",
157157
f"{model_name}_{model_id2}",
158-
**connected_cells_dataset, # type: ignore[misc]
158+
**connected_cells_dataset, # type: ignore[arg-type]
159159
)
160160
)
161161

@@ -232,7 +232,7 @@ def create_gwtgwt_exchanges(
232232
f"{transport_model_name}_{model_id2}",
233233
f"{flow_model_name}_{model_id1}",
234234
f"{flow_model_name}_{model_id2}",
235-
**connected_cells_dataset, # type: ignore[misc]
235+
**connected_cells_dataset, # type: ignore[arg-type]
236236
)
237237
)
238238

imod/prepare/spatial.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ def laplace_interpolate(
165165
if missing_dims:
166166
raise ValueError(f"Dimensions not in source: {missing_dims}")
167167
# Ensure order matches the order in source.
168-
dims = tuple(cast(str, dim) for dim in source.dims if dim in dims)
168+
dims = tuple(dim for dim in source.dims if dim in dims)
169169
shape = tuple(source.sizes[d] for d in dims)
170170
connectivity = laplace._build_connectivity(shape)
171171
arr = xr.apply_ufunc(

imod/select/grid.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def _reduce_grid_except_dims(
1818
grid: GridDataArray, preserve_dims: List[str]
1919
) -> GridDataArray:
2020
to_reduce = {dim: 0 for dim in grid.dims if dim not in preserve_dims}
21-
return grid.isel(**to_reduce) # type: ignore [misc, arg-type]
21+
return grid.isel(**to_reduce) # type: ignore [arg-type]
2222

2323

2424
def _validate_grid(grid):

0 commit comments

Comments
 (0)