Skip to content

Commit 29c5c68

Browse files
committed
Drop Python 3.8 - its EOL is due in just over 3 weeks
1 parent 053b8ed commit 29c5c68

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

.github/workflows/build.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ jobs:
1616
fail-fast: false
1717
matrix:
1818
python-version: [
19-
"3.8",
2019
"3.9",
2120
"3.10",
2221
"3.11",

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ Both the Esri and XBase file-formats are very simple in design and memory
7474
efficient which is part of the reason the shapefile format remains popular
7575
despite the numerous ways to store and exchange GIS data available today.
7676

77-
Pyshp is compatible with Pythons >= 3.8.
77+
Pyshp is compatible with Pythons >= 3.9.
7878

7979
This document provides examples for using PyShp to read and write shapefiles. However
8080
many more examples are continually added to the blog [http://GeospatialPython.com](http://GeospatialPython.com),

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ classifiers =
2323

2424
[options]
2525
py_modules = shapefile
26-
python_requires = >=3.8
26+
python_requires = >=3.9
2727

2828
[bdist_wheel]
2929
universal=1

shapefile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Provides read and write support for ESRI Shapefiles.
44
authors: jlawhead<at>geospatialpython.com
55
maintainer: karim.bahgat.norway<at>gmail.com
6-
Compatible with Python versions >= 3.8
6+
Compatible with Python versions >= 3.9
77
"""
88

99
__version__ = "2.3.1"

0 commit comments

Comments
 (0)