samgis_core 3.0.14__tar.gz → 3.1.0__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.0.14 → samgis_core-3.1.0}/PKG-INFO +4 -4
  2. {samgis_core-3.0.14 → samgis_core-3.1.0}/pyproject.toml +5 -8
  3. {samgis_core-3.0.14 → samgis_core-3.1.0}/LICENSE +0 -0
  4. {samgis_core-3.0.14 → samgis_core-3.1.0}/README.md +0 -0
  5. {samgis_core-3.0.14 → samgis_core-3.1.0}/samgis_core/__init__.py +0 -0
  6. {samgis_core-3.0.14 → samgis_core-3.1.0}/samgis_core/__version__.py +0 -0
  7. {samgis_core-3.0.14 → samgis_core-3.1.0}/samgis_core/prediction_api/__init__.py +0 -0
  8. {samgis_core-3.0.14 → samgis_core-3.1.0}/samgis_core/prediction_api/sam_onnx2.py +0 -0
  9. {samgis_core-3.0.14 → samgis_core-3.1.0}/samgis_core/prediction_api/sam_onnx_inference.py +0 -0
  10. {samgis_core-3.0.14 → samgis_core-3.1.0}/samgis_core/utilities/__init__.py +0 -0
  11. {samgis_core-3.0.14 → samgis_core-3.1.0}/samgis_core/utilities/constants.py +0 -0
  12. {samgis_core-3.0.14 → samgis_core-3.1.0}/samgis_core/utilities/create_folders_if_not_exists.py +0 -0
  13. {samgis_core-3.0.14 → samgis_core-3.1.0}/samgis_core/utilities/frontend_builder.py +0 -0
  14. {samgis_core-3.0.14 → samgis_core-3.1.0}/samgis_core/utilities/plot_images.py +0 -0
  15. {samgis_core-3.0.14 → samgis_core-3.1.0}/samgis_core/utilities/serialize.py +0 -0
  16. {samgis_core-3.0.14 → samgis_core-3.1.0}/samgis_core/utilities/session_logger.py +0 -0
  17. {samgis_core-3.0.14 → samgis_core-3.1.0}/samgis_core/utilities/type_hints.py +0 -0
  18. {samgis_core-3.0.14 → samgis_core-3.1.0}/samgis_core/utilities/update_requirements_txt.py +0 -0
  19. {samgis_core-3.0.14 → samgis_core-3.1.0}/samgis_core/utilities/utilities.py +0 -0
@@ -1,18 +1,18 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: samgis_core
3
- Version: 3.0.14
3
+ Version: 3.1.0
4
4
  Summary: SamGIS CORE
5
5
  License: MIT
6
6
  Author: alessandro trinca tornidor
7
7
  Author-email: alessandro@trinca.tornidor.com
8
- Requires-Python: >=3.10,<3.12
8
+ Requires-Python: >=3.10,<3.13
9
9
  Classifier: License :: OSI Approved :: MIT License
10
10
  Classifier: Programming Language :: Python :: 3
11
11
  Classifier: Programming Language :: Python :: 3.10
12
12
  Classifier: Programming Language :: Python :: 3.11
13
+ Classifier: Programming Language :: Python :: 3.12
13
14
  Requires-Dist: bson (>=0.5.10,<0.6.0)
14
- Requires-Dist: numpy (==1.25.2) ; python_version >= "3.10" and python_version < "3.11"
15
- Requires-Dist: numpy (>=1.26,<2.0) ; python_version >= "3.11" and python_version < "3.12"
15
+ Requires-Dist: numpy (>=2.1.2,<3.0.0)
16
16
  Requires-Dist: pillow (>=10.4.0,<11.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)
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "samgis_core"
3
- version = "3.0.14"
3
+ version = "3.1.0"
4
4
  description = "SamGIS CORE"
5
5
  authors = ["alessandro trinca tornidor <alessandro@trinca.tornidor.com>"]
6
6
  license = "MIT license"
@@ -8,19 +8,16 @@ readme = "README.md"
8
8
 
9
9
  [metadata]
10
10
  name = "samgis_core"
11
- version = "3.0.14"
11
+ version = "3.1.0"
12
12
 
13
13
  [tool.poetry.urls]
14
14
  Source = "https://gitlab.com/aletrn/samgis_core"
15
15
 
16
16
  [tool.poetry.dependencies]
17
17
  bson = "^0.5.10"
18
- numpy = [
19
- {version = "1.25.2", python = "~3.10"},
20
- {version = "^1.26", python = "~3.11"}
21
- ]
22
- pillow = "^10.4.0"
23
- python = ">=3.10, <3.12"
18
+ numpy = "^2.1.2"
19
+ pillow = "^10.4.0,<11.0"
20
+ python = ">=3.10, <3.13"
24
21
  python-dotenv = "^1.0.1"
25
22
  structlog = "^24.4.0"
26
23
 
File without changes
File without changes