我曾计划用python statefun示例(链接:https://github.com/apache/flink-statefun/tree/master/statefun-examples/statefun-python-greeter-example)来交流嵌入式有状态函数
但是(总会有一个但是)我一直在努力构建python发行版。我想我的配置是正确的。
This was the error which I tried to described
我的pip版本:19.2.3
我的python版本:3.7.5
顺便说一句,python sdk安装程序说它;
setup(
name='apache-flink-statefun',
version='2.1-SNAPSHOT',
packages=["statefun"],
url='https://github.com/apache/flink-statefun',
license='https://www.apache.org/licenses/LICENSE-2.0',
license_files=["LICENSE", "NOTICE"],
author='Apache Software Foundation',
author_email='dev@flink.apache.org',
description='Python SDK for Apache Flink Stateful functions',
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=['protobuf>=3.11.3,<4.0.0'],
tests_require=['pytest'],
python_requires='>=3.5',
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7']
)它说3.7python也可以。
你有什么想法吗?
谢谢。
https://stackoverflow.com/questions/61580877
复制相似问题