This is an automated email from the ASF dual-hosted git repository. dianfu pushed a commit to branch release-1.18 in repository https://gitbox.apache.org/repos/asf/flink.git
commit 8551a39ee46054d3ec05f3d31758f7ad39b69a39 Author: Dian Fu <[email protected]> AuthorDate: Mon Aug 28 14:34:27 2023 +0800 [FLINK-32758][python] Limit fastavro != 1.8.0 --- flink-python/dev/dev-requirements.txt | 2 +- flink-python/pyproject.toml | 2 +- flink-python/setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/flink-python/dev/dev-requirements.txt b/flink-python/dev/dev-requirements.txt index a05421acc53..bfede381ab1 100755 --- a/flink-python/dev/dev-requirements.txt +++ b/flink-python/dev/dev-requirements.txt @@ -25,7 +25,7 @@ pandas>=1.3.0 pyarrow>=5.0.0 pytz>=2018.3 numpy>=1.21.4 -fastavro>=1.1.0 +fastavro>=1.1.0,!=1.8.0 grpcio>=1.29.0,<=1.48.2 grpcio-tools>=1.29.0,<=1.48.2 pemja==0.3.0; platform_system != 'Windows' diff --git a/flink-python/pyproject.toml b/flink-python/pyproject.toml index db80347e262..fbef9b70315 100644 --- a/flink-python/pyproject.toml +++ b/flink-python/pyproject.toml @@ -23,7 +23,7 @@ requires = [ "wheel", "apache-beam>=2.43.0,<2.49.0", "cython>=0.29.24,<3", - "fastavro>=1.1.0" + "fastavro>=1.1.0,!=1.8.0" ] [tool.cibuildwheel] diff --git a/flink-python/setup.py b/flink-python/setup.py index 91b1e454f93..6bb2a09d4df 100644 --- a/flink-python/setup.py +++ b/flink-python/setup.py @@ -308,7 +308,7 @@ try: install_requires = ['py4j==0.10.9.7', 'python-dateutil>=2.8.0,<3', 'apache-beam>=2.43.0,<2.49.0', 'cloudpickle>=2.2.0', 'avro-python3>=1.8.1,!=1.9.2', - 'pytz>=2018.3', 'fastavro>=1.1.0', 'requests>=2.26.0', + 'pytz>=2018.3', 'fastavro>=1.1.0,!=1.8.0', 'requests>=2.26.0', 'protobuf>=3.19.0', 'numpy>=1.21.4', 'pandas>=1.3.0',
