We've got a number of bug fixes and new features (see https://github.com/mapbox/rasterio/issues?q=is%3Aissue+milestone%3APre-PyCon+is%3Aclosed) and I'd love to get packages that include GDAL 2.1.0 on PyPI.
Any objections to a 0.35 release tomorrow?
TODO
Installing on an Ubuntu 14.04/Python 3.4 system with pip install rasterio yields a compilation error:
x86_64-linux-gnu-gcc: error: rasterio/rasterfill.cpp: No such file or directory
while building the rasterio._fill extension
Opening up the wheel file rasterio-0.35.0-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl Indeed shows that cpp file is missing, even though it is in the repo.
@GeoSpark fix coming right up. In our attempt to conditionally use our own rasterfill.cpp only when necessary we didn't make sure it always made it into sdists. I've added it to MANIFEST.in and will be publishing an 0.35.0.post1 in a couple minutes.
Make sure to pip install rasterio[s3] if you have GDAL 2.1.0 and want to access datasets on S3 (GDAL 2.1.0 is included in the macosx wheels on PyPI).
Works like a charm, thanks Sean.