/
clever-bach
/
flink
Обзор
Документация
Войти
/
clever-bach
/
flink
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
flink-python/dev/install_command.sh
49 строк
2 KB
Mika Naylor
[FLINK-37823][python] Add Python 3.12 support (#26579)
22 май 2025, 05:55
Не верифицирован
22 май 2025, 05:55
5eeb2fc
Код
Авторство
О чём код?
#!/usr/bin/env bash ################################################################################ # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information # regarding copyright ownership. The ASF licenses this file # to you under the Apache License, Version 2.0 (the # "License"); you may not use this file except in compliance # with the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. ################################################################################ if [[ "$@" =~ 'apache-flink-libraries' ]]; then # As of Python 3.12, setuptools is no longer a seed package. # We should ensure its existence. python -m pip install setuptools pushd apache-flink-libraries python setup.py sdist pushd dist python -m pip install * popd popd fi if [[ `uname -s` == "Darwin" && `uname -m` == "arm64" ]]; then echo "Adding MacOS arm64 GRPC pip install fix" export GRPC_PYTHON_BUILD_SYSTEM_OPENSSL=1 export GRPC_PYTHON_BUILD_SYSTEM_ZLIB=1 fi retry_times=3 install_command="python -m pip install $@" ${install_command} status=$? while [[ ${status} -ne 0 ]] && [[ ${retry_times} -gt 0 ]]; do retry_times=$((retry_times-1)) # sleep 3 seconds and then reinstall. sleep 3 ${install_command} status=$? done exit ${status}