Accepting request 509796 from devel:languages:python

1

OBS-URL: https://build.opensuse.org/request/show/509796
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-Shapely?expand=0&rev=11
This commit is contained in:
2017-07-17 07:08:51 +00:00
committed by Git OBS Bridge
parent d4d7f46c5a
commit 4673fa1593
4 changed files with 107 additions and 28 deletions

View File

@@ -1,3 +1,67 @@
-------------------------------------------------------------------
Wed Jul 12 14:22:43 UTC 2017 - toddrme2178@gmail.com
- Don't require ctypes, it is built-in.
- Fix backwards-compatibility provides.
-------------------------------------------------------------------
Wed Jul 12 10:58:17 UTC 2017 - jengelh@inai.de
- Remove redundant wording from description.
-------------------------------------------------------------------
Tue Jul 11 19:43:32 UTC 2017 - toddrme2178@gmail.com
- Implement single-spec version.
- Fix source URL.
- Update to 1.5.17
* Bug fix: eliminate memory leak in geom_factory() (#408).
* Bug fix: remove mention of negative distances in parallel_offset and note
that vertices of right hand offset lines are reversed (#284).
- Update to 1.5.16
* Bug fix: eliminate memory leak when unpickling geometry objects (#384, #385).
* Bug fix: prevent crashes when attempting to pickle a prepared geometry,
raising ``PicklingError`` instead (#386).
* Packaging: extension modules in the OS X wheels uploaded to PyPI link only
libgeos_c.dylib now (you can verify and compare to previous releases with
``otool -L shapely/vectorized/_vectorized.so``).
- Update to 1.5.15
* Bug fix: use uintptr_t to store pointers instead of long in _geos.pxi,
preventing an overflow error (#372, #373). Note that this bug fix was
erroneously reported to have been made in 1.5.14, but was not.
- Update to 1.5.14
* Bug fix: use ``type()`` instead of ``isinstance()`` when evaluating geometry
equality, preventing instances of base and derived classes from
being mistaken for equals (#317).
* Bug fix: ensure that empty geometries are created when constructors have no
args (#332, #333).
* Bug fix: support app "freezing" better on Windows by not relying on the
``__file__`` attribute (#342, #377).
* Bug fix: ensure that empty polygons evaluate to be ``==`` (#355).
* Bug fix: filter out empty geometries that can cause segfaults when creating
and loading STRtrees (#345, #348).
* Bug fix: no longer attempt to reuse GEOS DLLs already loaded by Rasterio
or Fiona on OS X (#374, #375).
- Update to 1.5.13
* Restore setup and runtime discovery and loading of GEOS shared library to
state at version 1.5.9 (#326).
* On OS X we try to reuse any GEOS shared library that may have been loaded
via import of Fiona or Rasterio in order to avoid a bug involving the
GEOS AbstractSTRtree (#324, #327).
- Update to 1.5.12
* Remove configuration of root logger from libgeos.py (#312).
* Skip test_fallbacks on Windows (#308).
* Call setlocale(locale.LC_ALL, "") instead of resetlocale() on Windows when
tearing down the locale test (#308).
* Fix for Sphinx warnings (#309).
* Addition of .cache, .idea, .pyd, .pdb to .gitignore (#310).
- Update to 1.5.11
* Remove packaging module requirement added in 1.5.10 (#305). Distutils can't
parse versions using 'rc', but if we stick to 'a' and 'b' we will be fine.
- Update to 1.5.10
* Monkey patch affinity module by absolute reference (#299).
* Raise TopologicalError in relate() instead of crashing (#294, #295, #303).
-------------------------------------------------------------------
Mon Jun 15 17:38:21 UTC 2015 - bruno@ioda-net.ch