Skip to content

Commit

Permalink
- Bump to version 1.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
afabiani committed May 20, 2020
1 parent fea6460 commit 4cca7bc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

setup(
name="geoserver-restconfig",
version="1.0.5",
version="1.0.6",
description="GeoServer REST Configuration",
long_description=readme_text,
keywords="GeoServer REST Configuration",
Expand Down
2 changes: 1 addition & 1 deletion src/geoserver/support.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ def prepare_upload_bundle(name, data):
file-like objects. The client code is responsible for deleting the zip
archive when it's done."""
fd, path = mkstemp()
zip_file = ZipFile(path, 'w')
zip_file = ZipFile(path, 'w', allowZip64=True)
for ext, stream in data.items():
fname = "%s.%s" % (name, ext)
if (isinstance(stream, string_types)):
Expand Down

0 comments on commit 4cca7bc

Please sign in to comment.