This is an automated email from the ASF dual-hosted git repository.
tvalentyn pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git.
from ed9f620 [BEAM-11936] Fix errorprone UnusedVariable in Runners (#16035)
add bf9b959 [BEAM-8123] Add cloudpickle as optional library (#15472)
No new revisions were added by this update.
Summary of changes:
CHANGES.md | 1 +
sdks/python/apache_beam/coders/coders.py | 2 +-
.../apache_beam/coders/coders_test_common.py | 17 +-
.../apache_beam/internal/cloudpickle_pickler.py | 111 ++++++++
...pickler_test.py => cloudpickle_pickler_test.py} | 26 +-
.../internal/{pickler.py => dill_pickler.py} | 9 +
sdks/python/apache_beam/internal/pickler.py | 286 ++-------------------
.../python/apache_beam/options/pipeline_options.py | 6 +
.../apache_beam/runners/worker/sdk_worker_main.py | 2 +
.../container/py36/base_image_requirements.txt | 1 +
.../container/py37/base_image_requirements.txt | 1 +
.../container/py38/base_image_requirements.txt | 1 +
sdks/python/setup.py | 10 +-
13 files changed, 186 insertions(+), 287 deletions(-)
create mode 100644 sdks/python/apache_beam/internal/cloudpickle_pickler.py
copy sdks/python/apache_beam/internal/{pickler_test.py =>
cloudpickle_pickler_test.py} (85%)
copy sdks/python/apache_beam/internal/{pickler.py => dill_pickler.py} (97%)