Changeset 1138
- Timestamp:
- 08/22/08 21:18:38
- Files:
-
- Shapely/trunk/CHANGES.txt (modified) (1 diff)
- Shapely/trunk/setup.py (modified) (4 diffs)
- Shapely/trunk/setup_windows.py (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
Shapely/trunk/CHANGES.txt
r1121 r1138 1 All tickets are children of http://trac.gispython.org/projects/PCL/ticket/ 1 All tickets are children of http://trac.gispython.org/lab/ticket. 2 3 1.0.7 (2008-08-23) 4 ------------------ 5 - Polygon rings now have the same dimensions as parent (#168). 6 - Eliminated reference cycles in polygons (#169). 2 7 3 8 1.0.6 (2008-07-10) Shapely/trunk/setup.py
r1120 r1138 1 2 1 from setuptools import setup, Extension 3 2 from sys import version_info … … 12 11 13 12 setup(name = 'Shapely', 14 version = '1.0. 6',13 version = '1.0.7', 15 14 description = 'Geospatial geometries, predicates, and operations', 16 15 license = 'BSD', … … 20 19 maintainer = 'Sean Gillies', 21 20 maintainer_email = 'sgillies@frii.com', 22 url = 'http://trac.gispython.org/ projects/PCL/wiki/Shapely',21 url = 'http://trac.gispython.org/lab/wiki/Shapely', 23 22 long_description = readme_text, 24 23 packages = ['shapely', 'shapely.geometry'], … … 36 35 ], 37 36 ) 38 Shapely/trunk/setup_windows.py
r1122 r1138 1 2 1 from setuptools import setup, Extension 3 2 from sys import version_info … … 12 11 13 12 setup(name = 'Shapely', 14 version = '1.0. 6',13 version = '1.0.7', 15 14 description = 'Geospatial geometries, predicates, and operations', 16 15 license = 'BSD', … … 20 19 maintainer = 'Sean Gillies', 21 20 maintainer_email = 'sgillies@frii.com', 22 url = 'http://trac.gispython.org/ projects/PCL/wiki/Shapely',21 url = 'http://trac.gispython.org/lab/wiki/Shapely', 23 22 long_description = readme_text, 24 23 packages = ['shapely', 'shapely.geometry'], … … 37 36 ], 38 37 ) 39
