File tree Expand file tree Collapse file tree 5 files changed +88
-153
lines changed Expand file tree Collapse file tree 5 files changed +88
-153
lines changed Original file line number Diff line number Diff line change 1
1
language : python
2
2
3
3
python :
4
- - " 2.7"
5
- - " 3.5"
6
4
- " 3.6"
7
5
- " 3.7"
8
6
- " 3.8"
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ Both the Esri and XBase file-formats are very simple in design and memory
49
49
efficient which is part of the reason the shapefile format remains popular
50
50
despite the numerous ways to store and exchange GIS data available today.
51
51
52
- Pyshp is compatible with Python 2.7-3.x .
52
+ Pyshp is compatible with Python 3 .
53
53
54
54
This document provides examples for using PyShp to read and write shapefiles. However
55
55
many more examples are continually added to the blog [ http://GeospatialPython.com ] ( http://GeospatialPython.com ) ,
Original file line number Diff line number Diff line change @@ -19,11 +19,9 @@ def read_file(file):
19
19
license = 'MIT' ,
20
20
zip_safe = False ,
21
21
keywords = 'gis geospatial geographic shapefile shapefiles' ,
22
- python_requires = '>= 2.7 ' ,
22
+ python_requires = '>= 3.6 ' ,
23
23
classifiers = ['Programming Language :: Python' ,
24
- 'Programming Language :: Python :: 2.7' ,
25
24
'Programming Language :: Python :: 3' ,
26
- 'Programming Language :: Python :: 3.5' ,
27
25
'Programming Language :: Python :: 3.6' ,
28
26
'Programming Language :: Python :: 3.7' ,
29
27
'Programming Language :: Python :: 3.8' ,
You can’t perform that action at this time.
0 commit comments