[fiona] branch upstream updated (3e54734 -> 82fbe2c)

Sebastiaan Couwenberg sebastic at moszumanska.debian.org
Sat Jun 11 12:40:43 UTC 2016


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

sebastic pushed a change to branch upstream
in repository fiona.

      from  3e54734   Imported Upstream version 1.6.4
       new  2714a9f   Imported Upstream version 1.7~a1
       new  82fbe2c   Imported Upstream version 1.7~b1

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .gitignore                            |  75 +++++
 .travis.yml                           |  50 +++-
 CHANGES.txt                           |  13 +
 CODE_OF_CONDUCT.md                    |  22 ++
 CREDITS.txt                           |  18 +-
 README.rst                            |  13 +-
 docs/cli.rst                          |  48 +++-
 fiona/__init__.py                     |  92 +++---
 fiona/_cpl.pxd                        |  26 ++
 fiona/_crs.pxd                        |  18 ++
 fiona/_crs.pyx                        |  68 +++++
 fiona/_drivers.pyx                    | 130 ---------
 fiona/collection.py                   |  74 +++--
 fiona/crs.py                          |  41 +--
 fiona/{_drivers.pyx => drvsupport.py} | 172 ++---------
 fiona/errors.py                       |   8 -
 fiona/fio/bounds.py                   |  16 +-
 fiona/fio/calc.py                     |  63 ++++
 fiona/fio/cat.py                      | 528 +---------------------------------
 fiona/fio/collect.py                  | 215 ++++++++++++++
 fiona/fio/distrib.py                  |  41 +++
 fiona/fio/dump.py                     | 176 ++++++++++++
 fiona/fio/env.py                      |  29 ++
 fiona/fio/filter.py                   |  55 ++++
 fiona/fio/helpers.py                  |  84 +++++-
 fiona/fio/info.py                     |  94 ++----
 fiona/fio/insp.py                     |  46 +++
 fiona/fio/load.py                     | 107 +++++++
 fiona/fio/ls.py                       |  26 ++
 fiona/fio/options.py                  |   9 +
 fiona/{ograpi.pxd => ograpi1.pxd}     |   2 +
 fiona/{ograpi.pxd => ograpi2.pxd}     |  62 +++-
 fiona/{ogrext.pyx => ogrext1.pyx}     |  69 +++--
 fiona/{ogrext.pyx => ogrext2.pyx}     | 234 ++++++++++-----
 fiona/transform.py                    |  81 +++++-
 pep-508-install                       |  34 +++
 pyproject.toml                        |   3 +
 requirements-dev.txt                  |   3 +
 requirements.txt                      |   1 +
 scripts/travis_gdal_install.sh        |  89 ++++++
 setup.py                              | 137 +++++----
 tests/test_bigint.py                  |  69 +++++
 tests/test_bytescollection.py         | 102 +++----
 tests/test_cli.py                     |  38 ---
 tests/test_collection.py              | 339 +++++++++++-----------
 tests/test_collection_crs.py          |   4 +-
 tests/test_crs.py                     |  70 +++--
 tests/test_feature.py                 |  14 +-
 tests/test_fio_calc.py                |  71 +++++
 tests/test_fio_cat.py                 |  67 +----
 tests/test_fio_collect.py             |  98 +++++++
 tests/test_fio_distrib.py             |  23 ++
 tests/test_fio_dump.py                |  16 ++
 tests/test_fio_filter.py              |  29 ++
 tests/test_fio_info.py                |  73 +++++
 tests/test_fio_load.py                |  37 +++
 tests/test_fio_ls.py                  |  58 ++++
 tests/test_geometry.py                |  62 ++--
 tests/test_layer.py                   |  14 +-
 tests/test_props.py                   |   4 +-
 tests/test_remove.py                  |  77 +++++
 tests/test_rfc3339.py                 |  14 +-
 tests/test_unicode.py                 |  67 ++++-
 tests/test_vfs.py                     |  24 +-
 64 files changed, 2870 insertions(+), 1572 deletions(-)
 create mode 100644 .gitignore
 create mode 100644 CODE_OF_CONDUCT.md
 create mode 100644 fiona/_cpl.pxd
 create mode 100644 fiona/_crs.pxd
 create mode 100644 fiona/_crs.pyx
 copy fiona/{_drivers.pyx => drvsupport.py} (54%)
 create mode 100644 fiona/fio/calc.py
 create mode 100644 fiona/fio/collect.py
 create mode 100644 fiona/fio/distrib.py
 create mode 100644 fiona/fio/dump.py
 create mode 100644 fiona/fio/env.py
 create mode 100644 fiona/fio/filter.py
 create mode 100644 fiona/fio/insp.py
 create mode 100644 fiona/fio/load.py
 create mode 100644 fiona/fio/ls.py
 copy fiona/{ograpi.pxd => ograpi1.pxd} (98%)
 rename fiona/{ograpi.pxd => ograpi2.pxd} (76%)
 copy fiona/{ogrext.pyx => ogrext1.pyx} (96%)
 rename fiona/{ogrext.pyx => ogrext2.pyx} (85%)
 create mode 100755 pep-508-install
 create mode 100644 pyproject.toml
 create mode 100755 scripts/travis_gdal_install.sh
 create mode 100644 tests/test_bigint.py
 delete mode 100644 tests/test_cli.py
 create mode 100644 tests/test_fio_calc.py
 create mode 100644 tests/test_fio_collect.py
 create mode 100644 tests/test_fio_distrib.py
 create mode 100644 tests/test_fio_dump.py
 create mode 100644 tests/test_fio_filter.py
 create mode 100644 tests/test_fio_info.py
 create mode 100644 tests/test_fio_ls.py
 create mode 100644 tests/test_remove.py

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



More information about the Pkg-grass-devel mailing list