Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (5)
New upstream version 1.7.12
· 94851126
Bas Couwenberg
authored
Jul 09, 2018
94851126
Merge tag 'upstream/1.7.12'
· a71f3de1
Bas Couwenberg
authored
Jul 09, 2018
Upstream version 1.7.12
a71f3de1
New upstream release.
· 6c868cd1
Bas Couwenberg
authored
Jul 09, 2018
6c868cd1
Use Python 2 sphinx-build for python2 build explicitly.
· b8655240
Bas Couwenberg
authored
Jul 11, 2018
b8655240
Set distribution to unstable.
· 4435567e
Bas Couwenberg
authored
Jul 11, 2018
4435567e
Show whitespace changes
Inline
Side-by-side
CHANGES.txt
View file @
4435567e
...
...
@@ -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)
-------------------
...
...
debian/changelog
View file @
4435567e
fiona (1.7.1
1-4) UNRELEASED
; urgency=medium
fiona (1.7.1
2-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
...
...
debian/rules
View file @
4435567e
...
...
@@ -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
...
...
fiona/__init__.py
View file @
4435567e
...
...
@@ -81,7 +81,7 @@ import uuid
__all__
=
[
'
bounds
'
,
'
listlayers
'
,
'
open
'
,
'
prop_type
'
,
'
prop_width
'
]
__version__
=
"
1.7.1
1
"
__version__
=
"
1.7.1
2
"
__gdal_version__
=
get_gdal_release_name
().
decode
(
'
utf-8
'
)
log
=
logging
.
getLogger
(
__name__
)
...
...
requirements.txt
View file @
4435567e
argparse
cligj
six
cligj
>=0.4
six
>=1.7
ordereddict
munch
setup.py
View file @
4435567e
...
...
@@ -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
):
...
...