Python: require python version >= 3.8.

This commit is contained in:
Kristian Bendiksen 2023-08-23 09:27:24 +02:00
parent 7aabe8c4a8
commit 4b12f82583

View File

@ -19,5 +19,6 @@ setup(
license=license,
packages=['rips'],
package_data={'rips': ['py.typed', '*.py', 'generated/*.py', 'PythonExamples/*.py', 'tests/*.py']},
install_requires=['grpcio', 'protobuf', 'wheel']
install_requires=['grpcio', 'protobuf', 'wheel'],
python_requires='>=3.8',
)