[python-shapely] 96/148: Merge tag 'upstream/1.3.0'

Sebastiaan Couwenberg sebastic at moszumanska.debian.org
Thu Aug 20 17:42:08 UTC 2015


This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch master
in repository python-shapely.

commit 38a4c3bbed99a38395851fbee09beba9f50d2e64
Merge: 967849f 99bac80
Author: Pietro Battiston <me at pietrobattiston.it>
Date:   Mon Jan 20 10:31:52 2014 +0100

    Merge tag 'upstream/1.3.0'
    
    Upstream version 1.3.0

 .gitignore                                     |   10 +
 .travis.yml                                    |   22 +
 CHANGES.txt                                    |   52 +-
 CREDITS.txt                                    |   22 +
 DLLs_AMD64_VC9/README.txt                      |    1 +
 DLLs_x86_VC7/README.txt                        |    1 +
 DLLs_x86_VC9/README.txt                        |    1 +
 GEOS-C-API.txt                                 |   55 +
 MANIFEST.in                                    |   12 +
 PKG-INFO                                       |  396 --
 README.rst                                     |   94 +-
 Shapely.egg-info/PKG-INFO                      |  396 --
 Shapely.egg-info/SOURCES.txt                   |   87 -
 Shapely.egg-info/dependency_links.txt          |    1 -
 Shapely.egg-info/top_level.txt                 |    1 -
 docs/Makefile                                  |   95 +
 docs/code/buffer.py                            |   63 +
 docs/code/cascaded_union.py                    |   47 +
 docs/code/convex_hull.py                       |   54 +
 docs/code/difference.py                        |   55 +
 docs/code/figures.py                           |    9 +
 docs/code/geometrycollection.py                |   67 +
 docs/code/intersection-sym-difference.py       |   61 +
 docs/code/linearring.py                        |   59 +
 docs/code/linestring.py                        |   63 +
 docs/code/multilinestring.py                   |   69 +
 docs/code/multipolygon.py                      |   68 +
 docs/code/parallel_offset.py                   |   80 +
 docs/code/parallel_offset_mitre.py             |   80 +
 docs/code/polygon.py                           |   67 +
 docs/code/polygon2.py                          |   71 +
 docs/code/rotate.py                            |   57 +
 docs/code/scale.py                             |   64 +
 docs/code/simplify.py                          |   55 +
 docs/code/skew.py                              |   77 +
 docs/code/union.py                             |   61 +
 docs/conf.py                                   |  212 ++
 docs/design.txt                                |   30 +
 docs/images/4511827859_b5822043b7_o.png        |  Bin 0 -> 70577 bytes
 docs/images/buffer.png                         |  Bin 0 -> 19096 bytes
 docs/images/convex-hull.png                    |  Bin 0 -> 4050 bytes
 docs/images/simplify.png                       |  Bin 0 -> 19883 bytes
 docs/index.txt                                 |   19 +
 docs/manual.txt                                |  637 +++-
 docs/project.txt                               |    4 +
 docs/sphinxext/apigen.py                       |  427 +++
 docs/sphinxext/docscrape.py                    |  497 +++
 docs/sphinxext/docscrape_sphinx.py             |  136 +
 docs/sphinxext/inheritance_diagram.py          |  407 +++
 docs/sphinxext/ipython_console_highlighting.py |  114 +
 docs/sphinxext/numpydoc.py                     |  116 +
 requirements-dev.txt                           |    4 +
 setup.cfg                                      |    5 -
 setup.py                                       |  237 +-
 shapely/__init__.py                            |    3 +-
 shapely/affinity.py                            |  255 ++
 shapely/algorithms/cga.py                      |    1 -
 shapely/coords.py                              |   30 +-
 shapely/ctypes_declarations.py                 |  537 ++-
 shapely/geometry/__init__.py                   |   28 +-
 shapely/geometry/base.py                       |  287 +-
 shapely/geometry/geo.py                        |   16 +-
 shapely/geometry/linestring.py                 |   76 +-
 shapely/geometry/multilinestring.py            |   11 +-
 shapely/geometry/multipoint.py                 |   15 +-
 shapely/geometry/multipolygon.py               |   20 +-
 shapely/geometry/point.py                      |   42 +-
 shapely/geometry/polygon.py                    |   45 +-
 shapely/geometry/proxy.py                      |    4 +-
 shapely/geos.py                                |  566 ++-
 shapely/impl.py                                |   49 +-
 shapely/iterops.py                             |    4 +-
 shapely/ops.py                                 |  168 +-
 shapely/speedups/__init__.py                   |    5 +-
 shapely/speedups/_speedups.c                   | 4560 ------------------------
 shapely/tests/Array.txt                        |   86 -
 shapely/tests/GeoInterface.txt                 |   69 -
 shapely/tests/IterOps.txt                      |   31 -
 shapely/tests/LineString.txt                   |  134 -
 shapely/tests/MultiLineString.txt              |   81 -
 shapely/tests/MultiPoint.txt                   |  101 -
 shapely/tests/MultiPolygon.txt                 |   71 -
 shapely/tests/Operations.txt                   |   89 -
 shapely/tests/Persist.txt                      |   35 -
 shapely/tests/Point.txt                        |  148 -
 shapely/tests/Polygon.txt                      |  143 -
 shapely/tests/Predicates.txt                   |   51 -
 shapely/tests/__init__.py                      |   66 +-
 shapely/tests/attribute-chains.txt             |   40 -
 shapely/tests/binascii_hex.txt                 |   18 +-
 shapely/tests/cascaded_union.txt               |   24 -
 shapely/tests/dimensions.txt                   |   17 -
 shapely/tests/invalid_intersection.txt         |   29 -
 shapely/tests/linemerge.txt                    |   61 -
 shapely/tests/polygonize.txt                   |   29 -
 shapely/tests/rungrind.dist                    |    4 +
 shapely/tests/test_affinity.py                 |  251 ++
 shapely/tests/test_box.py                      |    7 +-
 shapely/tests/test_cga.py                      |   34 +-
 shapely/tests/test_collection.py               |   24 +-
 shapely/tests/test_delegated.py                |   12 +-
 shapely/tests/test_dlls.py                     |   12 +-
 shapely/tests/test_doctests.py                 |   21 +-
 shapely/tests/test_emptiness.py                |   52 +-
 shapely/tests/test_equality.py                 |   27 +-
 shapely/tests/test_geointerface.py             |   74 +
 shapely/tests/test_geomseq.py                  |    6 +-
 shapely/tests/test_getitem.py                  |   56 +-
 shapely/tests/test_invalid_geometries.py       |   30 +
 shapely/tests/test_iterops.py                  |   47 +
 shapely/tests/test_linear_referencing.py       |   63 +-
 shapely/tests/test_linemerge.py                |   52 +
 shapely/tests/test_linestring.py               |  101 +
 shapely/tests/test_locale.py                   |   56 +
 shapely/tests/test_mapping.py                  |    8 +-
 shapely/tests/test_multilinestring.py          |   61 +
 shapely/tests/test_multipoint.py               |   73 +
 shapely/tests/test_multipolygon.py             |   72 +
 shapely/tests/test_ndarrays.py                 |   54 +
 shapely/tests/test_operations.py               |   70 +
 shapely/tests/test_operators.py                |   18 +
 shapely/tests/test_persist.py                  |   34 +
 shapely/tests/test_pickle.py                   |   22 +
 shapely/tests/test_point.py                    |  139 +
 shapely/tests/test_polygon.py                  |  186 +
 shapely/tests/test_polygonize.py               |   49 +
 shapely/tests/test_predicates.py               |   34 +
 shapely/tests/test_prepared.py                 |   13 +-
 shapely/tests/test_products_z.py               |   15 +-
 shapely/tests/test_singularity.py              |   10 +-
 shapely/tests/test_speedups.py                 |   25 +-
 shapely/tests/test_styles.py                   |   20 +
 shapely/tests/test_transform.py                |   78 +
 shapely/tests/test_union.py                    |   72 +
 shapely/tests/test_validation.py               |    8 +-
 shapely/tests/test_xy.py                       |   13 +-
 shapely/tests/threading_test.py                |   37 +-
 shapely/tests/valgrind-python.supp             |  240 ++
 shapely/tests/wkt_locale.txt                   |   28 -
 shapely/validation.py                          |    3 +-
 shapely/wkb.py                                 |   53 +-
 shapely/wkt.py                                 |   28 +-
 tools/README.txt                               |    0
 143 files changed, 8062 insertions(+), 7693 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/python-shapely.git



More information about the Pkg-grass-devel mailing list