Skip to content

Commit 400b832

Browse files
committed
Put lower bounds on major library versions to cut down on build errors.
1 parent baa375b commit 400b832

File tree

2 files changed

+11
-10
lines changed

2 files changed

+11
-10
lines changed
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
pytz
2-
shapely
2+
Shapely>=1.6.0
33
pyspark==2.3.3 # See issue # 154
44
numpy>=1.7
5-
pandas
5+
pandas>=0.25.0
66
matplotlib<3.0.0 # no python 2.7 support after v2.x.x
77
ipython==6.2.1
8+
rasterio>=1.0.0

pyrasterframes/src/main/python/setup.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -136,18 +136,18 @@ def dest_file(self, src_file):
136136
},
137137
install_requires=[
138138
'pytz',
139-
'Shapely',
139+
'Shapely>=1.6.0',
140140
'pyspark<2.4',
141141
'numpy>=1.7',
142-
'pandas',
142+
'pandas>=0.25.0',
143143
],
144144
setup_requires=[
145145
'pytz',
146-
'Shapely',
146+
'Shapely>=1.6.0',
147147
'pyspark<2.4',
148148
'numpy>=1.7',
149149
'matplotlib<3.0.0',
150-
'pandas',
150+
'pandas>=0.25.0',
151151
'geopandas',
152152
'requests',
153153
'pytest-runner',
@@ -156,15 +156,15 @@ def dest_file(self, src_file):
156156
'ipykernel==4.8.0',
157157
'Pweave==0.30.3',
158158
'fiona==1.8.6',
159-
'rasterio', # for docs
159+
'rasterio>=1.0.0', # for docs
160160
],
161161
tests_require=[
162162
'pytest==3.4.2',
163163
'pypandoc',
164164
'numpy>=1.7',
165-
'Shapely',
166-
'pandas',
167-
'rasterio',
165+
'Shapely>=1.6.0',
166+
'pandas>=0.25.0',
167+
'rasterio>=1.0.0',
168168
'boto3',
169169
],
170170
packages=[

0 commit comments

Comments
 (0)