alessandro trinca tornidor commited on
Commit
7173eb6
·
2 Parent(s): eea0935 7f760ce

Merge branch 'main' into dev

Browse files
requirements.txt CHANGED
@@ -1,15 +1,15 @@
1
- bson==0.5.10 ; python_version >= "3.10" and python_version < "3.13"
2
- contextily==1.6.2 ; python_version >= "3.10" and python_version < "3.13"
3
- fastapi==0.115.11 ; python_version >= "3.10" and python_version < "3.13"
4
- geopandas==1.0.1 ; python_version >= "3.10" and python_version < "3.13"
5
- jinja2==3.1.6 ; python_version >= "3.10" and python_version < "3.13"
6
- numpy==2.2.4 ; python_version >= "3.10" and python_version < "3.13"
7
- onnxruntime==1.21.0 ; python_version >= "3.10" and python_version < "3.13"
8
- pillow==11.1.0 ; python_version >= "3.10" and python_version < "3.13"
9
- pydantic==2.10.6 ; python_version >= "3.10" and python_version < "3.13"
10
- python-dotenv==1.0.1 ; python_version >= "3.10" and python_version < "3.13"
11
- rasterio==1.4.3 ; python_version >= "3.10" and python_version < "3.13"
12
- requests==2.32.3 ; python_version >= "3.10" and python_version < "3.13"
13
- samgis-core==3.3.0 ; python_version >= "3.10" and python_version < "3.13"
14
- samgis-web==1.2.4 ; python_version >= "3.10" and python_version < "3.13"
15
- uvicorn==0.32.1 ; python_version >= "3.10" and python_version < "3.13"
 
1
+ bson==0.5.10
2
+ contextily==1.6.2
3
+ fastapi==0.115.12
4
+ geopandas==1.1.0
5
+ numpy==2.3.0
6
+ onnxruntime==1.22.0
7
+ pillow==11.2.1
8
+ pydantic==2.11.5
9
+ pydantic_core==2.33.2
10
+ python-dotenv==1.1.0
11
+ rasterio==1.4.3
12
+ requests==2.32.4
13
+ samgis_core==3.4.0
14
+ samgis_web==1.2.6
15
+ uvicorn==0.32.1
requirements_poetry.txt CHANGED
@@ -1 +1 @@
1
- poetry==2.1.1
 
1
+ poetry==2.1.3
scripts/create_requirements.sh CHANGED
@@ -20,11 +20,11 @@ echo "cat ${ROOT_FOLDER}/tmp/requirements_tmp.txt"
20
  cat ${ROOT_FOLDER}/tmp/requirements_tmp.txt
21
  echo -e "\n"
22
 
23
- [[ "$(echo -n 'Promote "${ROOT_FOLDER}/tmp/requirements_tmp.txt" as new requirements.txt? [y/N]> ' >&2; read; echo $REPLY)" == [Yy]* ]] \
24
  && echo "copy requirements_tmp.txt to root project..." \
25
  || exit 0
26
 
27
- cp ${ROOT_FOLDER}/tmp/requirements_tmp.txt ${ROOT_FOLDER}/requirements.txt
28
 
29
  echo "Fix any discrepancy within the new requirements.txt, bye!"
30
 
 
20
  cat ${ROOT_FOLDER}/tmp/requirements_tmp.txt
21
  echo -e "\n"
22
 
23
+ [[ "$(echo -n 'Promote && sort "${ROOT_FOLDER}/tmp/requirements_tmp.txt" as new requirements.txt? [y/N]> ' >&2; read; echo $REPLY)" == [Yy]* ]] \
24
  && echo "copy requirements_tmp.txt to root project..." \
25
  || exit 0
26
 
27
+ sort ${ROOT_FOLDER}/tmp/requirements_tmp.txt > ${ROOT_FOLDER}/requirements.txt
28
 
29
  echo "Fix any discrepancy within the new requirements.txt, bye!"
30