I had plan to communicate embedded stateful functions with python statefun example (link: https://github.com/apache/flink-statefun/tree/master/statefun-examples/statefun-python-greeter-example)
But (there is always a but) I had struggled to build python distribution. I think that I have the correct configurations.
This was the error which I tried to described
my pip version:19.2.3
my python version:3.7.5
by the way python sdk setup says its;
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']
)
It says it's ok with 3.7 python.
Do you have any ideas?
Thanks.