Merge branch 'main' into dev
Browse files- requirements.txt +15 -15
- requirements_poetry.txt +1 -1
- scripts/create_requirements.sh +2 -2
requirements.txt
CHANGED
|
@@ -1,15 +1,15 @@
|
|
| 1 |
-
bson==0.5.10
|
| 2 |
-
contextily==1.6.2
|
| 3 |
-
fastapi==0.115.
|
| 4 |
-
geopandas==1.
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
python-dotenv==1.
|
| 11 |
-
rasterio==1.4.3
|
| 12 |
-
requests==2.32.
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
uvicorn==0.32.1
|
|
|
|
| 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 |
+
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 |
-
|
| 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 |
|