[fiona] 01/02: New upstream version 1.7.10

Johan Van de Wauw johanvdw-guest at moszumanska.debian.org
Thu Nov 2 20:38:50 UTC 2017


This is an automated email from the git hooks/post-receive script.

johanvdw-guest pushed a commit to branch master
in repository fiona.

commit 5dbf7a57f5c3932e50b2ff8f7232af794782cb20
Author: Johan Van de Wauw <johan at gisky.be>
Date:   Wed Nov 1 22:00:09 2017 +0100

    New upstream version 1.7.10
---
 .travis.yml                    |  1 -
 CHANGES.txt                    | 19 +++++++++++++++++++
 fiona/__init__.py              |  2 +-
 fiona/fio/options.py           |  3 +--
 scripts/travis_gdal_install.sh |  2 +-
 5 files changed, 22 insertions(+), 5 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index d5854f9..34794b5 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -21,7 +21,6 @@ addons:
     - gdal-bin
     - libproj-dev
     - libhdf5-serial-dev
-    - libpng12-dev
     - libgdal-dev
     - libatlas-dev
     - libatlas-base-dev
diff --git a/CHANGES.txt b/CHANGES.txt
index 5ea6932..475f707 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -3,6 +3,25 @@ Changes
 
 All issue numbers are relative to https://github.com/Toblerity/Fiona/issues.
 
+1.7.10 (2017-10-26)
+-------------------
+
+Bug fixes:
+
+- An extraneous printed line from the ``rio cat --layers`` validator has been
+  removed (#478).
+
+Packaging:
+
+- Official OS X and Manylinux1 wheels (on PyPI) for this release will be
+  compatible with Shapely 1.6.2 and Rasterio 1.0a10 wheels.
+
+1.7.9.post1 (2017-08-21)
+------------------------
+
+This release introduces no changes in the Fiona package. It upgrades GDAL
+from 2.2.0 to 2.2.1 in wheels that we publish to the Python Package Index.
+
 1.7.9 (2017-08-17)
 ------------------
 
diff --git a/fiona/__init__.py b/fiona/__init__.py
index 3b53f06..b04912d 100644
--- a/fiona/__init__.py
+++ b/fiona/__init__.py
@@ -81,7 +81,7 @@ import uuid
 
 
 __all__ = ['bounds', 'listlayers', 'open', 'prop_type', 'prop_width']
-__version__ = "1.7.9"
+__version__ = "1.7.10"
 __gdal_version__ = get_gdal_release_name().decode('utf-8')
 
 log = logging.getLogger(__name__)
diff --git a/fiona/fio/options.py b/fiona/fio/options.py
index d916227..bdfb3d3 100644
--- a/fiona/fio/options.py
+++ b/fiona/fio/options.py
@@ -39,7 +39,6 @@ def validate_multilayer_file_index(files, layerdict):
     Ensure file indexes provided in the --layer option are valid
     """
     for key in layerdict.keys():
-        click.echo(key)
         if key not in [str(k) for k in range(1, len(files) + 1)]:
-            layer = key+":"+layerdict[key][0]
+            layer = key + ":" + layerdict[key][0]
             raise click.BadParameter("Layer {} does not exist".format(layer))
diff --git a/scripts/travis_gdal_install.sh b/scripts/travis_gdal_install.sh
index 86472fc..2f893a8 100755
--- a/scripts/travis_gdal_install.sh
+++ b/scripts/travis_gdal_install.sh
@@ -15,7 +15,7 @@ GDALOPTS="  --with-ogr \
             --without-cfitsio \
             --without-pcraster \
             --without-netcdf \
-            --with-png=/usr \
+            --with-png=internal \
             --with-jpeg=internal \
             --without-gif \
             --without-ogdi \

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/fiona.git



More information about the Pkg-grass-devel mailing list