From 9b03b6d11193c40603dff86f4e56b1dadfa8f96a Mon Sep 17 00:00:00 2001 From: Varun Agrawal Date: Wed, 13 Jan 2021 10:54:22 -0500 Subject: [PATCH] Squashed 'wrap/' changes from 186ed2c79..85d34351c 85d34351c Merge pull request #27 from borglab/fix/python3.5 dfe7639c0 support for python 3.5 git-subtree-dir: wrap git-subtree-split: 85d34351cdb29172601845f73d3281e786a531b3 --- cmake/GtwrapUtils.cmake | 4 ++-- setup.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cmake/GtwrapUtils.cmake b/cmake/GtwrapUtils.cmake index b5f791250..acf075c5b 100644 --- a/cmake/GtwrapUtils.cmake +++ b/cmake/GtwrapUtils.cmake @@ -8,7 +8,7 @@ macro(get_python_version) if(NOT ${PYTHONINTERP_FOUND}) message( FATAL_ERROR - "Cannot find Python interpreter. Please install Python >= 3.6.") + "Cannot find Python interpreter. Please install Python>=3.5.") endif() find_package(PythonLibs ${PYTHON_VERSION_STRING}) @@ -34,7 +34,7 @@ macro(get_python_version) if(NOT ${Python_FOUND}) message( FATAL_ERROR - "Cannot find Python interpreter. Please install Python>=3.6.") + "Cannot find Python interpreter. Please install Python>=3.5.") endif() endif() diff --git a/setup.py b/setup.py index 10fc53d34..8ef61f312 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ setup( keywords="wrap, bindings, cpp, python", long_description=open("README.md").read(), long_description_content_type="text/markdown", - python_requires=">=3.6", + python_requires=">=3.5", # https://pypi.org/classifiers classifiers=[ 'Development Status :: 4 - Beta',