From 14876aa4b3172746693e23c035d8c5104e38d6f6 Mon Sep 17 00:00:00 2001 From: Ruth Comer Date: Mon, 20 Nov 2023 09:42:47 +0000 Subject: [PATCH] Bump pyshp min version to v2.3 --- .github/workflows/ci-testing.yml | 2 +- INSTALL | 2 +- environment.yml | 2 +- pyproject.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci-testing.yml b/.github/workflows/ci-testing.yml index 86cac340c..58cd0943b 100644 --- a/.github/workflows/ci-testing.yml +++ b/.github/workflows/ci-testing.yml @@ -33,7 +33,7 @@ jobs: if: matrix.python-version == '3.9' && matrix.os == 'ubuntu-latest' id: minimum-packages run: | - pip install cython==0.29.24 matplotlib==3.5.3 numpy==1.21 owslib==0.24.1 pyproj==3.1 scipy==1.6.3 shapely==1.7.1 + pip install cython==0.29.24 matplotlib==3.5.3 numpy==1.21 owslib==0.24.1 pyproj==3.1 scipy==1.6.3 shapely==1.7.1 pyshp==2.3.1 - name: Coverage packages id: coverage diff --git a/INSTALL b/INSTALL index 49e93adf4..03609e87a 100644 --- a/INSTALL +++ b/INSTALL @@ -69,7 +69,7 @@ Further information about the required dependencies can be found here: **Shapely** 1.7.1 or later (https://github.com/shapely/shapely) Python package for the manipulation and analysis of planar geometric objects. -**pyshp** 2.1 or later (https://pypi.python.org/pypi/pyshp) +**pyshp** 2.3 or later (https://pypi.python.org/pypi/pyshp) Pure Python read/write support for ESRI Shapefile format. **pyproj** 3.1.0 or later (https://github.com/pyproj4/pyproj/) diff --git a/environment.yml b/environment.yml index 640b1af97..48e394cd3 100644 --- a/environment.yml +++ b/environment.yml @@ -11,7 +11,7 @@ dependencies: - cython>=0.29.24 - numpy>=1.21 - shapely>=1.7.1 - - pyshp>=2.1 + - pyshp>=2.3 - pyproj>=3.1.0 # The testing label has the proper version of freetype included - conda-forge/label/testing::matplotlib-base>=3.4 diff --git a/pyproject.toml b/pyproject.toml index 0e56f4bae..431b889f7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -44,7 +44,7 @@ dependencies = [ "matplotlib>=3.5", "shapely>=1.7", "packaging>=20", - "pyshp>=2.1", + "pyshp>=2.3", "pyproj>=3.1.0", ] dynamic = ["version"]