Bas Couwenberg pushed to branch master at Debian GIS Project / pyshp
Commits: 46fc7862 by Bas Couwenberg at 2020-09-11T06:13:08+02:00 New upstream version 2.1.2+ds - - - - - 694f7fea by Bas Couwenberg at 2020-09-11T06:13:09+02:00 Update upstream source from tag 'upstream/2.1.2+ds' Update to upstream version '2.1.2+ds' with Debian dir 55483c8c9b59b17688ada215507aaa0878100d38 - - - - - 3ff13586 by Bas Couwenberg at 2020-09-11T06:13:32+02:00 New upstream release. - - - - - bb27dea1 by Bas Couwenberg at 2020-09-11T06:14:14+02:00 Set distribution to unstable. - - - - - 6 changed files: - PKG-INFO - README.md - changelog.txt - debian/changelog - setup.py - shapefile.py Changes: ===================================== PKG-INFO ===================================== @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: pyshp -Version: 2.1.1 +Version: 2.1.2 Summary: Pure Python read/write support for ESRI Shapefile format Home-page: https://github.com/GeospatialPython/pyshp Author: Joel Lawhead @@ -79,6 +79,12 @@ Description: # PyShp # Version Changes + ## 2.1.2 + + ### Bug fixes: + + - Fix issue where warnings.simplefilter('always') changes global warning behavior [see #203] + ## 2.1.1 ### Improvements: ===================================== README.md ===================================== @@ -70,6 +70,12 @@ part of your geospatial project. # Version Changes +## 2.1.2 + +### Bug fixes: + +- Fix issue where warnings.simplefilter('always') changes global warning behavior [see #203] + ## 2.1.1 ### Improvements: ===================================== changelog.txt ===================================== @@ -1,4 +1,10 @@ +VERSION 2.1.2 + +2020-09-10 + Bug fixes: + * Fix issue where `warnings.simplefilter('always')` changes global warning behavior [see #203] + VERSION 2.1.1 2020-09-09 ===================================== debian/changelog ===================================== @@ -1,3 +1,10 @@ +pyshp (2.1.2+ds-1) unstable; urgency=medium + + * Team upload. + * New upstream release. + + -- Bas Couwenberg <[email protected]> Fri, 11 Sep 2020 06:14:05 +0200 + pyshp (2.1.1+ds-1) unstable; urgency=medium * Team upload. ===================================== setup.py ===================================== @@ -7,7 +7,7 @@ def read_file(file): return data.decode('utf-8') setup(name='pyshp', - version='2.1.1', + version='2.1.2', description='Pure Python read/write support for ESRI Shapefile format', long_description=read_file('README.md'), long_description_content_type='text/markdown', ===================================== shapefile.py ===================================== @@ -2,11 +2,11 @@ shapefile.py Provides read and write support for ESRI Shapefiles. author: jlawhead<at>geospatialpython.com -version: 2.1.1 +version: 2.1.2 Compatible with Python versions 2.7-3.x """ -__version__ = "2.1.1" +__version__ = "2.1.2" from struct import pack, unpack, calcsize, error, Struct import os @@ -18,8 +18,6 @@ import warnings import io from datetime import date -warnings.simplefilter("always") - # Constants for shape types NULL = 0 View it on GitLab: https://salsa.debian.org/debian-gis-team/pyshp/-/compare/e689fef286001dcf2c6701d6cbbe18f19847c247...bb27dea1935d64070e8901870a3c8bbfa724cd3b -- View it on GitLab: https://salsa.debian.org/debian-gis-team/pyshp/-/compare/e689fef286001dcf2c6701d6cbbe18f19847c247...bb27dea1935d64070e8901870a3c8bbfa724cd3b You're receiving this email because of your account on salsa.debian.org.
_______________________________________________ Pkg-grass-devel mailing list [email protected] https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-grass-devel
