From 68b478a260a93fdae328d2d0bcd4576c07b91757 Mon Sep 17 00:00:00 2001 From: iosefa Date: Wed, 2 Jul 2025 18:47:38 -1000 Subject: [PATCH 1/2] Update Python version to 3.11 or above and upgrade dependencies in requirements.txt --- README.md | 2 +- requirements.txt | 18 +++++++++--------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 86edc51..e571c7c 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ pip install pyforestscan - PDAL >= 2.7 - GDAL >= 3.5 -- Python >= 3.10 +- Python >= 3.11 ## Quick Start diff --git a/requirements.txt b/requirements.txt index 1db80df..7385e01 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,12 +1,12 @@ setuptools~=75.1.0 -requests~=2.32.3 +requests~=2.32.4 rasterio~=1.3.11 pdal~=3.4.5 -geopandas~=1.0.1 -pyproj~=3.6.1 -shapely~=2.0.6 -pandas~=2.2.2 -numpy~=2.1.1 -matplotlib~=3.9.2 -scipy~=1.14.1 -tqdm~=4.66.5 +geopandas~=1.1.1 +pyproj~=3.7.1 +shapely~=2.1.1 +pandas~=2.3.0 +numpy~=2.3.1 +matplotlib~=3.10.3 +scipy~=1.16.0 +tqdm~=4.67.1 From 1f226474579e3dacc28ee608658fa2d09502a829 Mon Sep 17 00:00:00 2001 From: iosefa Date: Wed, 2 Jul 2025 18:51:21 -1000 Subject: [PATCH 2/2] Remove Python 3.10 from GitHub Actions matrix --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4c11ea2..20b9b75 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -14,7 +14,7 @@ jobs: strategy: matrix: - python-version: ["3.10", "3.11", "3.12", "3.13"] + python-version: ["3.11", "3.12", "3.13"] steps: - name: Check out the repository