Skip to content

Commit d61eb5d

Browse files
build: update dependencies (#250)
* build: update dependencies * python 3.14
1 parent e06d48b commit d61eb5d

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/.backend_git_ref

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
9fcd0e8d520b3e7679d29c969263345ea190ec46
1+
8de4ad7e8efa267b528d71caa74b90aac2b43403

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
fail-fast: false
1919
matrix:
2020
# use all supported versions from https://devguide.python.org/versions/
21-
python-version: ["3.10", "3.11", "3.12", "3.13"]
21+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
2222

2323
with:
2424
python-version: ${{ matrix.python-version }}

geoengine/raster.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ def coords_x(self, pixel_center=False) -> np.ndarray:
157157
start += self.geo_transform.x_half_pixel_size
158158

159159
return np.arange(
160-
start=start,
160+
start,
161161
stop=self.geo_transform.x_max(self.size_x),
162162
step=self.geo_transform.x_pixel_size,
163163
)
@@ -174,7 +174,7 @@ def coords_y(self, pixel_center=False) -> np.ndarray:
174174
start += self.geo_transform.y_half_pixel_size
175175

176176
return np.arange(
177-
start=start,
177+
start,
178178
stop=self.geo_transform.y_min(self.size_y),
179179
step=self.geo_transform.y_pixel_size,
180180
)

pyproject.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ readme = { file = "README.md", content-type = "text/markdown" }
1616
license-files = ["LICENSE"]
1717
requires-python = ">=3.10"
1818
dependencies = [
19-
"geoengine-openapi-client == 0.0.28",
19+
"geoengine-openapi-client == 0.0.29",
2020
"geopandas >=1.0,<2.0",
2121
"matplotlib >=3.5,<3.11",
22-
"numpy >=1.21,<2.4",
22+
"numpy >=1.21,<2.5",
2323
"owslib >=0.27,<0.36",
2424
"pillow >=10.0,<13",
2525
"pyarrow >=17.0,<23",
@@ -30,8 +30,8 @@ dependencies = [
3030
"StrEnum >=0.4.6,<0.5", # TODO: use from stdlib when `python_requires = >=3.11`
3131
"vega >= 3.5,<4.2",
3232
"websockets >= 14.2,<16",
33-
"xarray >=0.19,<2025.10",
34-
"urllib3 >= 2.1, < 2.6",
33+
"xarray >=0.19,<2026.1",
34+
"urllib3 >= 2.1, < 2.7",
3535
"pydantic >= 2.10.6, < 2.13",
3636
'skl2onnx >=1.19.1,<1.20',
3737
]
@@ -54,10 +54,10 @@ dev = [
5454
]
5555
test = [
5656
"psycopg >=3.2,<4",
57-
"pytest >=6.3,<9",
57+
"pytest >=6.3,<10",
5858
"pytest-cov >=6.0,<7.1",
5959
"requests_mock >=1.9,<2",
60-
"scikit-learn >=1.5,<1.8",
60+
"scikit-learn >=1.5,<1.9",
6161
]
6262
examples = [
6363
"cartopy >=0.22,<0.26", # for WMS example

0 commit comments

Comments
 (0)