samgis_core 3.1.0__tar.gz → 3.1.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (19) hide show
  1. {samgis_core-3.1.0 → samgis_core-3.1.1}/PKG-INFO +2 -2
  2. {samgis_core-3.1.0 → samgis_core-3.1.1}/pyproject.toml +6 -6
  3. {samgis_core-3.1.0 → samgis_core-3.1.1}/LICENSE +0 -0
  4. {samgis_core-3.1.0 → samgis_core-3.1.1}/README.md +0 -0
  5. {samgis_core-3.1.0 → samgis_core-3.1.1}/samgis_core/__init__.py +0 -0
  6. {samgis_core-3.1.0 → samgis_core-3.1.1}/samgis_core/__version__.py +0 -0
  7. {samgis_core-3.1.0 → samgis_core-3.1.1}/samgis_core/prediction_api/__init__.py +0 -0
  8. {samgis_core-3.1.0 → samgis_core-3.1.1}/samgis_core/prediction_api/sam_onnx2.py +0 -0
  9. {samgis_core-3.1.0 → samgis_core-3.1.1}/samgis_core/prediction_api/sam_onnx_inference.py +0 -0
  10. {samgis_core-3.1.0 → samgis_core-3.1.1}/samgis_core/utilities/__init__.py +0 -0
  11. {samgis_core-3.1.0 → samgis_core-3.1.1}/samgis_core/utilities/constants.py +0 -0
  12. {samgis_core-3.1.0 → samgis_core-3.1.1}/samgis_core/utilities/create_folders_if_not_exists.py +0 -0
  13. {samgis_core-3.1.0 → samgis_core-3.1.1}/samgis_core/utilities/frontend_builder.py +0 -0
  14. {samgis_core-3.1.0 → samgis_core-3.1.1}/samgis_core/utilities/plot_images.py +0 -0
  15. {samgis_core-3.1.0 → samgis_core-3.1.1}/samgis_core/utilities/serialize.py +0 -0
  16. {samgis_core-3.1.0 → samgis_core-3.1.1}/samgis_core/utilities/session_logger.py +0 -0
  17. {samgis_core-3.1.0 → samgis_core-3.1.1}/samgis_core/utilities/type_hints.py +0 -0
  18. {samgis_core-3.1.0 → samgis_core-3.1.1}/samgis_core/utilities/update_requirements_txt.py +0 -0
  19. {samgis_core-3.1.0 → samgis_core-3.1.1}/samgis_core/utilities/utilities.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: samgis_core
3
- Version: 3.1.0
3
+ Version: 3.1.1
4
4
  Summary: SamGIS CORE
5
5
  License: MIT
6
6
  Author: alessandro trinca tornidor
@@ -13,7 +13,7 @@ Classifier: Programming Language :: Python :: 3.11
13
13
  Classifier: Programming Language :: Python :: 3.12
14
14
  Requires-Dist: bson (>=0.5.10,<0.6.0)
15
15
  Requires-Dist: numpy (>=2.1.2,<3.0.0)
16
- Requires-Dist: pillow (>=10.4.0,<11.0.0)
16
+ Requires-Dist: pillow (>=11.0.0,<12.0.0)
17
17
  Requires-Dist: python-dotenv (>=1.0.1,<2.0.0)
18
18
  Requires-Dist: structlog (>=24.4.0,<25.0.0)
19
19
  Project-URL: Source, https://gitlab.com/aletrn/samgis_core
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "samgis_core"
3
- version = "3.1.0"
3
+ version = "3.1.1"
4
4
  description = "SamGIS CORE"
5
5
  authors = ["alessandro trinca tornidor <alessandro@trinca.tornidor.com>"]
6
6
  license = "MIT license"
@@ -8,7 +8,7 @@ readme = "README.md"
8
8
 
9
9
  [metadata]
10
10
  name = "samgis_core"
11
- version = "3.1.0"
11
+ version = "3.1.1"
12
12
 
13
13
  [tool.poetry.urls]
14
14
  Source = "https://gitlab.com/aletrn/samgis_core"
@@ -16,7 +16,7 @@ Source = "https://gitlab.com/aletrn/samgis_core"
16
16
  [tool.poetry.dependencies]
17
17
  bson = "^0.5.10"
18
18
  numpy = "^2.1.2"
19
- pillow = "^10.4.0,<11.0"
19
+ pillow = "^11.0.0"
20
20
  python = ">=3.10, <3.13"
21
21
  python-dotenv = "^1.0.1"
22
22
  structlog = "^24.4.0"
@@ -25,15 +25,15 @@ structlog = "^24.4.0"
25
25
  optional = true
26
26
 
27
27
  [tool.poetry.group.onnxruntime.dependencies]
28
- onnxruntime = "^1.18.1"
28
+ onnxruntime = "^1.20.0"
29
29
 
30
30
  [tool.poetry.group.test]
31
31
  optional = true
32
32
 
33
33
  [tool.poetry.group.test.dependencies]
34
34
  mpld3 = "^0.5.10"
35
- pytest = "^8.2.2"
36
- pytest-cov = "^5.0.0"
35
+ pytest = "^8.3.3"
36
+ pytest-cov = "^6.0.0"
37
37
  rasterio = "^1.3.10"
38
38
 
39
39
  [build-system]
File without changes
File without changes