Skip to content
Commits on Source (5)
......@@ -3,6 +3,24 @@ Changes
All issue numbers are relative to https://github.com/Toblerity/Fiona/issues.
1.7.12 (2018-06-11)
-------------------
- Require six>=1.7
- Include sqlite 3.24.0 in macosx wheels (frs-wheel-builds 1.8.2).
1.7.11.post2 (2018-04-30)
-------------------------
- This post-release adds GPKG (geopackage) support to manylinux1 wheels
and upgrades the included GDAL library to 2.2.4.
1.7.11.post1 (2018-01-08)
-------------------------
- This post-release adds missing expat (and thereby GPX format) support to
the included GDAL library (still version 2.2.2).
1.7.11 (2017-12-14)
-------------------
......
fiona (1.7.11-4) UNRELEASED; urgency=medium
fiona (1.7.12-1) unstable; urgency=medium
* Team upload.
* New upstream release.
* Bump Standards-Version to 4.1.5, no changes.
* Use Python 2 sphinx-build for python2 build explicitly.
-- Bas Couwenberg <sebastic@debian.org> Thu, 05 Jul 2018 09:54:33 +0200
-- Bas Couwenberg <sebastic@debian.org> Wed, 11 Jul 2018 15:19:46 +0200
fiona (1.7.11-3) unstable; urgency=medium
......
......@@ -11,7 +11,7 @@ BUILD_DATE=$(shell LC_ALL=C date -u "+%B %d, %Y" -d "@$(SOURCE_DATE_EPOCH)")
DEB_BUILD_ARCH ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH)
export PYBUILD_NAME=fiona
export PYBUILD_AFTER_BUILD_python2 = PYTHONPATH={build_dir} http_proxy='127.0.0.1:9' sphinx-build -N -bhtml -D today="$(BUILD_DATE)" docs/ build/html
export PYBUILD_AFTER_BUILD_python2 = PYTHONPATH={build_dir} http_proxy='127.0.0.1:9' /usr/share/sphinx/scripts/python2/sphinx-build -N -bhtml -D today="$(BUILD_DATE)" docs/ build/html
export PYBUILD_TEST_NOSE=1
export PYBUILD_BEFORE_TEST=cp -r {dir}/tests {build_dir}
export PYBUILD_AFTER_TEST=rm -rf {build_dir}/tests
......
......@@ -81,7 +81,7 @@ import uuid
__all__ = ['bounds', 'listlayers', 'open', 'prop_type', 'prop_width']
__version__ = "1.7.11"
__version__ = "1.7.12"
__gdal_version__ = get_gdal_release_name().decode('utf-8')
log = logging.getLogger(__name__)
......
......@@ -219,9 +219,9 @@ elif "clean" not in sys.argv:
Extension('fiona.ogrext', ['fiona/ogrext2.c'], **ext_options))
requirements = [
'cligj',
'cligj>=0.4',
'click-plugins',
'six',
'six>=1.7',
'munch']
if sys.version_info < (2, 7):
......