Skip to content

Commit 106410a

Browse files
committed
Drop Python 2.7, require Python 3.6+
1 parent 7521026 commit 106410a

File tree

5 files changed

+88
-153
lines changed

5 files changed

+88
-153
lines changed

.travis.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
language: python
22

33
python:
4-
- "2.7"
5-
- "3.5"
64
- "3.6"
75
- "3.7"
86
- "3.8"

README.md

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

52-
Pyshp is compatible with Python 2.7-3.x.
52+
Pyshp is compatible with Python 3.
5353

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

setup.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,9 @@ def read_file(file):
1919
license='MIT',
2020
zip_safe=False,
2121
keywords='gis geospatial geographic shapefile shapefiles',
22-
python_requires='>= 2.7',
22+
python_requires='>= 3.6',
2323
classifiers=['Programming Language :: Python',
24-
'Programming Language :: Python :: 2.7',
2524
'Programming Language :: Python :: 3',
26-
'Programming Language :: Python :: 3.5',
2725
'Programming Language :: Python :: 3.6',
2826
'Programming Language :: Python :: 3.7',
2927
'Programming Language :: Python :: 3.8',

0 commit comments

Comments
 (0)