Merging 'master' into 'wrap'

release/4.3a0
Varun Agrawal 2021-01-13 10:54:22 -05:00
commit 45bbf3d332
2 changed files with 3 additions and 3 deletions

View File

@ -8,7 +8,7 @@ macro(get_python_version)
if(NOT ${PYTHONINTERP_FOUND}) if(NOT ${PYTHONINTERP_FOUND})
message( message(
FATAL_ERROR FATAL_ERROR
"Cannot find Python interpreter. Please install Python >= 3.6.") "Cannot find Python interpreter. Please install Python>=3.5.")
endif() endif()
find_package(PythonLibs ${PYTHON_VERSION_STRING}) find_package(PythonLibs ${PYTHON_VERSION_STRING})
@ -34,7 +34,7 @@ macro(get_python_version)
if(NOT ${Python_FOUND}) if(NOT ${Python_FOUND})
message( message(
FATAL_ERROR FATAL_ERROR
"Cannot find Python interpreter. Please install Python>=3.6.") "Cannot find Python interpreter. Please install Python>=3.5.")
endif() endif()
endif() endif()

View File

@ -17,7 +17,7 @@ setup(
keywords="wrap, bindings, cpp, python", keywords="wrap, bindings, cpp, python",
long_description=open("README.md").read(), long_description=open("README.md").read(),
long_description_content_type="text/markdown", long_description_content_type="text/markdown",
python_requires=">=3.6", python_requires=">=3.5",
# https://pypi.org/classifiers # https://pypi.org/classifiers
classifiers=[ classifiers=[
'Development Status :: 4 - Beta', 'Development Status :: 4 - Beta',