Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/.backend_git_ref
Original file line number Diff line number Diff line change
@@ -1 +1 @@
9fcd0e8d520b3e7679d29c969263345ea190ec46
8de4ad7e8efa267b528d71caa74b90aac2b43403
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
fail-fast: false
matrix:
# use all supported versions from https://devguide.python.org/versions/
python-version: ["3.10", "3.11", "3.12", "3.13"]
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]

with:
python-version: ${{ matrix.python-version }}
Expand Down
4 changes: 2 additions & 2 deletions geoengine/raster.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ def coords_x(self, pixel_center=False) -> np.ndarray:
start += self.geo_transform.x_half_pixel_size

return np.arange(
start=start,
start,
stop=self.geo_transform.x_max(self.size_x),
step=self.geo_transform.x_pixel_size,
)
Expand All @@ -174,7 +174,7 @@ def coords_y(self, pixel_center=False) -> np.ndarray:
start += self.geo_transform.y_half_pixel_size

return np.arange(
start=start,
start,
stop=self.geo_transform.y_min(self.size_y),
step=self.geo_transform.y_pixel_size,
)
Expand Down
12 changes: 6 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ readme = { file = "README.md", content-type = "text/markdown" }
license-files = ["LICENSE"]
requires-python = ">=3.10"
dependencies = [
"geoengine-openapi-client == 0.0.28",
"geoengine-openapi-client == 0.0.29",
"geopandas >=1.0,<2.0",
"matplotlib >=3.5,<3.11",
"numpy >=1.21,<2.4",
"numpy >=1.21,<2.5",
"owslib >=0.27,<0.36",
"pillow >=10.0,<13",
"pyarrow >=17.0,<23",
Expand All @@ -30,8 +30,8 @@ dependencies = [
"StrEnum >=0.4.6,<0.5", # TODO: use from stdlib when `python_requires = >=3.11`
"vega >= 3.5,<4.2",
"websockets >= 14.2,<16",
"xarray >=0.19,<2025.10",
"urllib3 >= 2.1, < 2.6",
"xarray >=0.19,<2026.1",
"urllib3 >= 2.1, < 2.7",
"pydantic >= 2.10.6, < 2.13",
'skl2onnx >=1.19.1,<1.20',
]
Expand All @@ -54,10 +54,10 @@ dev = [
]
test = [
"psycopg >=3.2,<4",
"pytest >=6.3,<9",
"pytest >=6.3,<10",
"pytest-cov >=6.0,<7.1",
"requests_mock >=1.9,<2",
"scikit-learn >=1.5,<1.8",
"scikit-learn >=1.5,<1.9",
]
examples = [
"cartopy >=0.22,<0.26", # for WMS example
Expand Down