This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch master in repository fiona.
commit 78a09645fbfbbf2e2600380d815269a9954747d3 Author: Bas Couwenberg <[email protected]> Date: Wed Jun 15 18:31:07 2016 +0200 Imported Upstream version 1.7.0.post2 --- CHANGES.txt | 5 +++++ fiona/__init__.py | 2 +- setup.py | 5 ++++- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index 97f59a2..7fc5853 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -3,6 +3,11 @@ Changes All issue numbers are relative to https://github.com/Toblerity/Fiona/issues. +1.7.0post2 (2016-06-15) +----------------------- + +Packaging: define extension modules for 'clean' and 'config' targets (#363). + 1.7.0post1 (2016-06-15) ----------------------- diff --git a/fiona/__init__.py b/fiona/__init__.py index d15b2c0..6cca09b 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.0.post1" +__version__ = "1.7.0.post2" __gdal_version__ = get_gdal_release_name().decode('utf-8') log = logging.getLogger('Fiona') diff --git a/setup.py b/setup.py index 769b91e..731797b 100644 --- a/setup.py +++ b/setup.py @@ -154,8 +154,11 @@ ext_options = dict( libraries=libraries, extra_link_args=extra_link_args) -# When building from a repo, Cython is required. +# Define the extension modules. +ext_modules = [] + if source_is_repo and "clean" not in sys.argv: + # When building from a repo, Cython is required. log.info("MANIFEST.in found, presume a repo, cythonizing...") if not cythonize: log.critical( -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/fiona.git _______________________________________________ Pkg-grass-devel mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel

