You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iceberg.apache.org by bl...@apache.org on 2022/06/30 18:49:23 UTC

[iceberg] branch master updated (342ec3c4b7 -> da37818bc8)

This is an automated email from the ASF dual-hosted git repository.

blue pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/iceberg.git


    from 342ec3c4b7 API: Access deleted and added delete files in Snapshot (#5105)
     add da37818bc8 Python: Rename python top-level module pyiceberg, remove src (#5169)

No new revisions were added by this update.

Summary of changes:
 python/Makefile                                      |  2 +-
 python/dev/RELEASE.md                                |  4 ++--
 python/{src/iceberg => pyiceberg}/__init__.py        |  0
 python/{src/iceberg => pyiceberg}/avro/__init__.py   |  0
 .../iceberg => pyiceberg}/avro/codecs/__init__.py    | 10 +++++-----
 .../{src/iceberg => pyiceberg}/avro/codecs/bzip2.py  |  2 +-
 .../{src/iceberg => pyiceberg}/avro/codecs/codec.py  |  0
 .../iceberg => pyiceberg}/avro/codecs/deflate.py     |  2 +-
 .../avro/codecs/snappy_codec.py                      |  2 +-
 .../avro/codecs/zstandard_codec.py                   |  2 +-
 python/{src/iceberg => pyiceberg}/avro/decoder.py    |  6 +++---
 python/{src/iceberg => pyiceberg}/avro/file.py       | 18 +++++++++---------
 python/{src/iceberg => pyiceberg}/avro/reader.py     | 10 +++++-----
 python/{src/iceberg => pyiceberg}/avro/resolver.py   |  6 +++---
 .../{src/iceberg => pyiceberg}/catalog/__init__.py   |  0
 python/{src/iceberg => pyiceberg}/catalog/base.py    |  6 +++---
 python/{src/iceberg => pyiceberg}/conversions.py     |  4 ++--
 python/{src/iceberg => pyiceberg}/exceptions.py      |  0
 .../iceberg => pyiceberg}/expressions/__init__.py    |  0
 .../{src/iceberg => pyiceberg}/expressions/base.py   |  8 ++++----
 .../iceberg => pyiceberg}/expressions/literals.py    | 10 +++++-----
 python/{src/iceberg => pyiceberg}/files.py           |  0
 python/{src/iceberg => pyiceberg}/io/__init__.py     |  0
 python/{src/iceberg => pyiceberg}/io/base.py         |  0
 python/{src/iceberg => pyiceberg}/io/memory.py       |  2 +-
 python/{src/iceberg => pyiceberg}/io/pyarrow.py      |  4 ++--
 python/{src/iceberg => pyiceberg}/schema.py          | 14 +++++++-------
 python/{src/iceberg => pyiceberg}/serializers.py     |  4 ++--
 python/{src/iceberg => pyiceberg}/table/__init__.py  |  0
 python/{src/iceberg => pyiceberg}/table/base.py      |  2 +-
 python/{src/iceberg => pyiceberg}/table/metadata.py  |  8 ++++----
 .../{src/iceberg => pyiceberg}/table/partitioning.py |  4 ++--
 python/{src/iceberg => pyiceberg}/table/refs.py      |  2 +-
 python/{src/iceberg => pyiceberg}/transforms.py      |  8 ++++----
 python/{src/iceberg => pyiceberg}/types.py           |  4 ++--
 python/{src/iceberg => pyiceberg}/utils/__init__.py  |  0
 .../{src/iceberg => pyiceberg}/utils/bin_packing.py  |  0
 python/{src/iceberg => pyiceberg}/utils/datetime.py  |  0
 python/{src/iceberg => pyiceberg}/utils/decimal.py   |  0
 .../utils/iceberg_base_model.py                      |  0
 .../iceberg => pyiceberg}/utils/schema_conversion.py | 16 ++++++++--------
 python/{src/iceberg => pyiceberg}/utils/singleton.py |  0
 python/pyproject.toml                                |  8 ++++----
 python/tests/avro/test_decoder.py                    | 10 +++++-----
 python/tests/avro/test_file.py                       |  4 ++--
 python/tests/avro/test_reader.py                     |  8 ++++----
 python/tests/avro/test_resolver.py                   |  8 ++++----
 python/tests/catalog/test_base.py                    | 10 +++++-----
 python/tests/conftest.py                             |  8 ++++----
 python/tests/expressions/test_expressions_base.py    |  6 +++---
 python/tests/expressions/test_literals.py            |  4 ++--
 python/tests/io/test_io_base.py                      |  4 ++--
 python/tests/io/test_pyarrow.py                      | 20 ++++++++++----------
 python/tests/table/test_metadata.py                  | 12 ++++++------
 python/tests/table/test_partitioning.py              |  8 ++++----
 python/tests/test_conversions.py                     |  6 +++---
 python/tests/test_schema.py                          | 10 +++++-----
 python/tests/test_transforms.py                      |  6 +++---
 python/tests/test_types.py                           |  4 ++--
 python/tests/utils/test_bin_packing.py               |  4 ++--
 python/tests/utils/test_schema_conversion.py         |  6 +++---
 python/tests/utils/test_singleton.py                 |  4 ++--
 62 files changed, 155 insertions(+), 155 deletions(-)
 rename python/{src/iceberg => pyiceberg}/__init__.py (100%)
 rename python/{src/iceberg => pyiceberg}/avro/__init__.py (100%)
 rename python/{src/iceberg => pyiceberg}/avro/codecs/__init__.py (83%)
 rename python/{src/iceberg => pyiceberg}/avro/codecs/bzip2.py (97%)
 rename python/{src/iceberg => pyiceberg}/avro/codecs/codec.py (100%)
 rename python/{src/iceberg => pyiceberg}/avro/codecs/deflate.py (96%)
 rename python/{src/iceberg => pyiceberg}/avro/codecs/snappy_codec.py (98%)
 rename python/{src/iceberg => pyiceberg}/avro/codecs/zstandard_codec.py (97%)
 rename python/{src/iceberg => pyiceberg}/avro/decoder.py (97%)
 rename python/{src/iceberg => pyiceberg}/avro/file.py (92%)
 rename python/{src/iceberg => pyiceberg}/avro/reader.py (98%)
 rename python/{src/iceberg => pyiceberg}/avro/resolver.py (98%)
 rename python/{src/iceberg => pyiceberg}/catalog/__init__.py (100%)
 rename python/{src/iceberg => pyiceberg}/catalog/base.py (98%)
 rename python/{src/iceberg => pyiceberg}/conversions.py (98%)
 rename python/{src/iceberg => pyiceberg}/exceptions.py (100%)
 rename python/{src/iceberg => pyiceberg}/expressions/__init__.py (100%)
 rename python/{src/iceberg => pyiceberg}/expressions/base.py (98%)
 rename python/{src/iceberg => pyiceberg}/expressions/literals.py (98%)
 rename python/{src/iceberg => pyiceberg}/files.py (100%)
 rename python/{src/iceberg => pyiceberg}/io/__init__.py (100%)
 rename python/{src/iceberg => pyiceberg}/io/base.py (100%)
 rename python/{src/iceberg => pyiceberg}/io/memory.py (98%)
 rename python/{src/iceberg => pyiceberg}/io/pyarrow.py (99%)
 rename python/{src/iceberg => pyiceberg}/schema.py (98%)
 rename python/{src/iceberg => pyiceberg}/serializers.py (94%)
 rename python/{src/iceberg => pyiceberg}/table/__init__.py (100%)
 rename python/{src/iceberg => pyiceberg}/table/base.py (96%)
 rename python/{src/iceberg => pyiceberg}/table/metadata.py (98%)
 rename python/{src/iceberg => pyiceberg}/table/partitioning.py (98%)
 rename python/{src/iceberg => pyiceberg}/table/refs.py (95%)
 rename python/{src/iceberg => pyiceberg}/transforms.py (98%)
 rename python/{src/iceberg => pyiceberg}/types.py (99%)
 rename python/{src/iceberg => pyiceberg}/utils/__init__.py (100%)
 rename python/{src/iceberg => pyiceberg}/utils/bin_packing.py (100%)
 rename python/{src/iceberg => pyiceberg}/utils/datetime.py (100%)
 rename python/{src/iceberg => pyiceberg}/utils/decimal.py (100%)
 rename python/{src/iceberg => pyiceberg}/utils/iceberg_base_model.py (100%)
 rename python/{src/iceberg => pyiceberg}/utils/schema_conversion.py (96%)
 rename python/{src/iceberg => pyiceberg}/utils/singleton.py (100%)