From 2d5b7396156a739e7c5ffc34fb030991d1bed3cf Mon Sep 17 00:00:00 2001 From: "Jake.Adams" Date: Fri, 15 May 2026 10:42:44 -0600 Subject: [PATCH 1/2] deps: Q2 dbot updates --- .github/workflows/release.yml | 4 ++-- setup.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6d04ec5..b59a4fe 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -27,7 +27,7 @@ jobs: run: pipx run build - name: ⬆️ Upload artifacts - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: build-artifacts path: dist @@ -45,7 +45,7 @@ jobs: steps: - name: ⬇️ Download artifacts - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: build-artifacts path: dist diff --git a/setup.py b/setup.py index 922a56d..7acf3e1 100644 --- a/setup.py +++ b/setup.py @@ -40,12 +40,12 @@ install_requires=[ "arcgis>=2.3,<2.5", "geopandas>=0.14,<1.2", - "geodatasets>=2023.12,<=2025.12", + "geodatasets>=2023.12,<=2026.1.0", "pg8000>=1.29,<1.32", "psycopg2-binary==2.9.*", "pygsheets==2.0.*", "pysftp==0.2.9", - "setuptools==80.*", + "setuptools>=80,<83", "paramiko>=3.0,<5.0", "SQLAlchemy>=1.4,<2.1", ], From e1ed390b2b572999f83331f62d11bfdf37bfbee9 Mon Sep 17 00:00:00 2001 From: Scott Davis Date: Wed, 20 May 2026 12:34:34 -0600 Subject: [PATCH 2/2] deps: pin arcgis to <2.4.3 2.4.3 introduces support for pandas v3 which causes issues. Punting for now until we are sure that arcgis will play nicely with pandas 3 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 7acf3e1..4e871a9 100644 --- a/setup.py +++ b/setup.py @@ -38,7 +38,7 @@ }, keywords=["gis"], install_requires=[ - "arcgis>=2.3,<2.5", + "arcgis>=2.3,<2.4.3", "geopandas>=0.14,<1.2", "geodatasets>=2023.12,<=2026.1.0", "pg8000>=1.29,<1.32",