Skip to content

Commit 781d44b

Browse files
committed
Imported Upstream version 1.2.8
1 parent 3d1a23f commit 781d44b

24 files changed

+285
-1896
lines changed

CHANGES.txt

Lines changed: 22 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,30 @@
1-
All tickets are children of http://trac.gispython.org/lab/ticket.
1+
1.2.8 (2011-12-03)
2+
------------------
3+
- New parallel_offset method (#6).
4+
- Support for Python 2.4.
5+
6+
1.2.7 (2010-11-05)
7+
------------------
8+
- Support for Windows eggs.
9+
10+
1.2.6 (2010-10-21)
11+
------------------
12+
- The geoms property of an empty collection yields [] instead of a ValueError
13+
(#3).
14+
- The coords and geometry type sproperties have the same behavior as above.
15+
- Ensure that z values carry through into products of operations (#4).
16+
17+
1.2.5 (2010-09-19)
18+
------------------
19+
- Stop distributing docs/_build.
20+
- Include library fallbacks in test_dlls.py for linux platform.
221

322
1.2.4 (2010-09-09)
423
------------------
524
- Raise AttributeError when there's no backend support for a method.
625
- Raise OSError if libgeos_c.so (or variants) can't be found and loaded.
7-
- Add geos_c DLL loading support for linux platforms where find_library
8-
doesn't work.
26+
- Add geos_c DLL loading support for linux platforms where find_library doesn't
27+
work.
928

1029
1.2.3 (2010-08-17)
1130
------------------

MANIFEST.in

Lines changed: 0 additions & 7 deletions
This file was deleted.

PKG-INFO

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Metadata-Version: 1.0
22
Name: Shapely
3-
Version: 1.2.4
3+
Version: 1.2.8
44
Summary: Geometric objects, predicates, and operations
55
Home-page: http://trac.gispython.org/lab/wiki/Shapely
66
Author: Sean Gillies

Shapely.egg-info/PKG-INFO

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Metadata-Version: 1.0
22
Name: Shapely
3-
Version: 1.2.4
3+
Version: 1.2.8
44
Summary: Geometric objects, predicates, and operations
55
Home-page: http://trac.gispython.org/lab/wiki/Shapely
66
Author: Sean Gillies

Shapely.egg-info/SOURCES.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
CHANGES.txt
22
CREDITS.txt
33
LICENSE.txt
4-
MANIFEST.in
54
README.txt
65
setup.cfg
76
setup.py
@@ -10,12 +9,12 @@ Shapely.egg-info/SOURCES.txt
109
Shapely.egg-info/dependency_links.txt
1110
Shapely.egg-info/top_level.txt
1211
docs/manual.txt
13-
docs/_build/html/_sources/manual.txt
1412
examples/dissolve.py
1513
examples/intersect.py
1614
shapely/__init__.py
1715
shapely/coords.py
1816
shapely/ctypes_declarations.py
17+
shapely/ftools.py
1918
shapely/geos.py
2019
shapely/impl.py
2120
shapely/iterops.py
@@ -56,7 +55,6 @@ shapely/tests/binascii_hex.txt
5655
shapely/tests/cascaded_union.txt
5756
shapely/tests/dimensions.txt
5857
shapely/tests/invalid_intersection.txt
59-
shapely/tests/linear-referencing.txt
6058
shapely/tests/linemerge.txt
6159
shapely/tests/polygonize.txt
6260
shapely/tests/test_collection.py
@@ -66,8 +64,10 @@ shapely/tests/test_doctests.py
6664
shapely/tests/test_emptiness.py
6765
shapely/tests/test_equality.py
6866
shapely/tests/test_geomseq.py
67+
shapely/tests/test_linear_referencing.py
6968
shapely/tests/test_mapping.py
7069
shapely/tests/test_prepared.py
70+
shapely/tests/test_products_z.py
7171
shapely/tests/test_singularity.py
7272
shapely/tests/test_validation.py
7373
shapely/tests/test_xy.py

0 commit comments

Comments
 (0)