File tree Expand file tree Collapse file tree 2 files changed +11
-10
lines changed
pyrasterframes/src/main/python Expand file tree Collapse file tree 2 files changed +11
-10
lines changed Original file line number Diff line number Diff line change 11pytz
2- shapely
2+ Shapely >= 1.6.0
33pyspark == 2.3.3 # See issue # 154
44numpy >= 1.7
5- pandas
5+ pandas >= 0.25.0
66matplotlib < 3.0.0 # no python 2.7 support after v2.x.x
77ipython == 6.2.1
8+ rasterio >= 1.0.0
Original file line number Diff line number Diff 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 = [
You can’t perform that action at this time.
0 commit comments