From 856ae59db776bafd531c79311d25a0b3d47f1d0d Mon Sep 17 00:00:00 2001
From: George Ge <george.jiaqi.ge@gmail.com>
Date: Fri, 16 Aug 2024 04:43:27 +0000
Subject: [PATCH] Fix sphinx build

---
 .gitlab-ci.yml       |  2 +-
 requirements.txt     | 25 +++++++++++--------------
 requirements_dev.txt |  3 +++
 3 files changed, 15 insertions(+), 15 deletions(-)
 create mode 100644 requirements_dev.txt

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index fc31dbd..b78f649 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -10,7 +10,7 @@ before_script:
   - pip --cache-dir=.pip install sphinx
   - pip --cache-dir=.pip install sphinx-autodoc-typehints
   - pip --cache-dir=.pip install sphinx_rtd_theme
-  - pip --cache-dir=.pip install -r requirements.txt
+  - pip --cache-dir=.pip install -r requirements_dev.txt
   
 pages:
   script:
diff --git a/requirements.txt b/requirements.txt
index 326201a..5a9ba43 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -1,22 +1,19 @@
+eodag-sentinelsat~=0.4.1
+eodag~=2.12.1
+fiona~=1.9.6
+geopandas~=0.14.4
 matplotlib~=3.9.0
 numpy~=1.26.4
+packaging~=24.1
+pandas~=2.2.2
+pillow~=10.3.0
+pyproj~=3.6.1
+python-crontab~=3.1.0
 rasterio~=1.3.10  # In 1.4 -> Warning 3: Cannot find header.dxf (GDAL_DATA is not defined)
-fiona~=1.9.6
-shapely~=2.0.4
 rasterstats~=0.19.0
+scipy~=1.13.1
 sentinelhub~=3.10.2
 sentinelsat~=1.2.1
-pyproj~=3.6.1
+shapely~=2.0.4
 typing~=3.7.4
-pandas~=2.2.2
 urllib3~=2.2.2
-geopandas~=0.14.4
-scipy~=1.13.1
-pillow~=10.3.0
-python-crontab~=3.1.0
-packaging~=24.1
-eodag~=2.12.1
-eodag-sentinelsat~=0.4.1
-sphinx-book-theme~=1.1.3
-sphinx-math-dollar~=1.2.1
-myst-parser~=3.0.1
diff --git a/requirements_dev.txt b/requirements_dev.txt
new file mode 100644
index 0000000..3f3d71e
--- /dev/null
+++ b/requirements_dev.txt
@@ -0,0 +1,3 @@
+myst-parser
+sphinx-book-theme
+sphinx-math-dollar
-- 
GitLab