This is an automated email from the ASF dual-hosted git repository.
dianfu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git
The following commit(s) were added to refs/heads/master by this push:
new 5b5a0af15d5 [FLINK-32758][python] Limit fastavro != 1.8.0
5b5a0af15d5 is described below
commit 5b5a0af15d57ed4424cf8dd744808433e397ebc4
Author: Dian Fu <[email protected]>
AuthorDate: Wed Aug 30 10:21:53 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 8ad6b082fb0..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,<1.8
+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 32afcb75300..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,<1.8"
+ "fastavro>=1.1.0,!=1.8.0"
]
[tool.cibuildwheel]
diff --git a/flink-python/setup.py b/flink-python/setup.py
index 5fa86183e3b..4911ba8fd48 100644
--- a/flink-python/setup.py
+++ b/flink-python/setup.py
@@ -314,7 +314,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,<1.8',
'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',