From e83ab8ee1fc716dc47aeb17b5e285fcebea3da10 Mon Sep 17 00:00:00 2001 From: Mizux Seiha Date: Thu, 29 Jun 2023 15:27:45 +0200 Subject: [PATCH] python: Fix minimum required version --- ortools/python/setup.py.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ortools/python/setup.py.in b/ortools/python/setup.py.in index 28dc18b096..043a0ff81f 100644 --- a/ortools/python/setup.py.in +++ b/ortools/python/setup.py.in @@ -41,7 +41,7 @@ setup( name='@PYTHON_PROJECT@', version='@PROJECT_VERSION@', packages=find_packages(), - python_requires='>= 3.6', + python_requires='>= 3.7', install_requires=[ 'absl-py >= 0.13', 'numpy >= 1.13.3',