Changeset 1562

Show
Ignore:
Timestamp:
02/28/10 07:05:04 (5 months ago)
Author:
seang
Message:

Works with GEOS 3.0 again.

Location:
Shapely/branches/1.2
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • Shapely/branches/1.2/CHANGES.txt

    r1560 r1562  
    11All tickets are children of http://trac.gispython.org/lab/ticket. 
     2 
     31.2b3 (2010-02-28) 
     4------------------ 
     5- Only provide simplification implementations for GEOS C API >= 1.5. 
    26 
    371.2b2 (2010-02-19) 
  • Shapely/branches/1.2/setup.py

    r1560 r1562  
    1515    metadata_version    = '1.2', 
    1616    name                = 'Shapely', 
    17     version             = '1.2b2', 
     17    version             = '1.2b3', 
    1818    requires_python     = '>=2.5,<3', 
    1919    requires_external   = 'libgeos_c (>=3.1)',  
  • Shapely/branches/1.2/shapely/impl.py

    r1550 r1562  
    4545    'within': (BinaryPredicate, 'within'), 
    4646    'equals_exact': (BinaryPredicate, 'equals_exact'), 
     47    } 
     48 
     49IMPL15 = { 
    4750    'simplify': (UnaryTopologicalOp, 'simplify'), 
    4851    'topology_preserve_simplify':  
    4952        (UnaryTopologicalOp, 'topology_preserve_simplify'), 
    50  
    51     } 
    52  
    53 IMPL15 = { 
    5453    'prepared_intersects': (BinaryPredicate, 'prepared_intersects'), 
    5554    'prepared_contains': (BinaryPredicate, 'prepared_contains'),