chore: update backend dependencies
Browse files- Dockerfile +1 -1
- docs/Changelog.md +6 -0
- poetry.lock +0 -0
- pyproject.toml +10 -11
Dockerfile
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
FROM registry.gitlab.com/aletrn/gis-prediction:1.8.
|
2 |
|
3 |
# Include global arg in this stage of the build
|
4 |
ARG WORKDIR_ROOT="/var/task"
|
|
|
1 |
+
FROM registry.gitlab.com/aletrn/gis-prediction:1.8.2
|
2 |
|
3 |
# Include global arg in this stage of the build
|
4 |
ARG WORKDIR_ROOT="/var/task"
|
docs/Changelog.md
CHANGED
@@ -1,5 +1,11 @@
|
|
1 |
# Changelog
|
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
## Version 1.8.0
|
4 |
|
5 |
- Update frontend dependencies
|
|
|
1 |
# Changelog
|
2 |
|
3 |
+
## Version 1.8.2
|
4 |
+
|
5 |
+
- Update frontend dependencies
|
6 |
+
- update backend dependencies (samgis-core = 3.1.1, samgis-web = 1.1.2, gradio == 5.5.0, numpy == 2.1.3, onnxruntime==1.20.0, starlette == 0.41.2)
|
7 |
+
- base dockerfile: install `libexpat1` Debian package to avoid the `Cannot open library: libexpat.so.1: cannot open shared object file: No such file or directory` error on `rasterio` python import
|
8 |
+
|
9 |
## Version 1.8.0
|
10 |
|
11 |
- Update frontend dependencies
|
poetry.lock
CHANGED
The diff for this file is too large to render.
See raw diff
|
|
pyproject.toml
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
[tool.poetry]
|
2 |
name = "samgis"
|
3 |
-
version = "1.8.
|
4 |
description = "A backend for machine learning instance segmentation on geospatial data even without dedicated graphics cards."
|
5 |
authors = ["alessandro trinca tornidor <[email protected]>"]
|
6 |
license = "MIT license"
|
@@ -9,7 +9,7 @@ package-mode = false
|
|
9 |
|
10 |
[metadata]
|
11 |
name = "samgis"
|
12 |
-
version = "1.8.
|
13 |
|
14 |
[tool.poetry.urls]
|
15 |
Source = "https://github.com/trincadev/samgis-be"
|
@@ -17,9 +17,8 @@ Demo = "https://huggingface.co/spaces/aletrn/samgis"
|
|
17 |
|
18 |
[tool.poetry.dependencies]
|
19 |
python = ">=3.10, <3.13"
|
20 |
-
onnxruntime = "^1.
|
21 |
-
samgis-web = "1.1.
|
22 |
-
samgis-core = "3.1.0"
|
23 |
|
24 |
[tool.poetry.group.gradio]
|
25 |
optional = true
|
@@ -31,19 +30,19 @@ gradio = "^5.1.0"
|
|
31 |
optional = true
|
32 |
|
33 |
[tool.poetry.group.test.dependencies]
|
34 |
-
|
35 |
-
pytest
|
|
|
36 |
python-dotenv = "^1.0.1"
|
37 |
-
httpx = "^0.27.0"
|
38 |
|
39 |
[tool.poetry.group.docs]
|
40 |
optional = true
|
41 |
|
42 |
[tool.poetry.group.docs.dependencies]
|
43 |
-
sphinx = "^
|
44 |
-
sphinx-autodoc-typehints = "^2.
|
45 |
sphinxcontrib-openapi = "^0.8.4"
|
46 |
-
myst-parser = "^
|
47 |
sphinx-autodoc-defaultargs = "^0.1.2"
|
48 |
|
49 |
[build-system]
|
|
|
1 |
[tool.poetry]
|
2 |
name = "samgis"
|
3 |
+
version = "1.8.2"
|
4 |
description = "A backend for machine learning instance segmentation on geospatial data even without dedicated graphics cards."
|
5 |
authors = ["alessandro trinca tornidor <[email protected]>"]
|
6 |
license = "MIT license"
|
|
|
9 |
|
10 |
[metadata]
|
11 |
name = "samgis"
|
12 |
+
version = "1.8.2"
|
13 |
|
14 |
[tool.poetry.urls]
|
15 |
Source = "https://github.com/trincadev/samgis-be"
|
|
|
17 |
|
18 |
[tool.poetry.dependencies]
|
19 |
python = ">=3.10, <3.13"
|
20 |
+
onnxruntime = "^1.20.0"
|
21 |
+
samgis-web = "1.1.2"
|
|
|
22 |
|
23 |
[tool.poetry.group.gradio]
|
24 |
optional = true
|
|
|
30 |
optional = true
|
31 |
|
32 |
[tool.poetry.group.test.dependencies]
|
33 |
+
httpx = "^0.27.2"
|
34 |
+
pytest = "^8.3.3"
|
35 |
+
pytest-cov = "^6.0.0"
|
36 |
python-dotenv = "^1.0.1"
|
|
|
37 |
|
38 |
[tool.poetry.group.docs]
|
39 |
optional = true
|
40 |
|
41 |
[tool.poetry.group.docs.dependencies]
|
42 |
+
sphinx = "^8.1.3"
|
43 |
+
sphinx-autodoc-typehints = "^2.5.0"
|
44 |
sphinxcontrib-openapi = "^0.8.4"
|
45 |
+
myst-parser = "^4.0.0"
|
46 |
sphinx-autodoc-defaultargs = "^0.1.2"
|
47 |
|
48 |
[build-system]
|