Skip to content

Commit

Permalink
Squashed 'wrap/' changes from 186ed2c79..85d34351c
Browse files Browse the repository at this point in the history
85d34351c Merge pull request #27 from borglab/fix/python3.5
dfe7639c0 support for python 3.5

git-subtree-dir: wrap
git-subtree-split: 85d34351cdb29172601845f73d3281e786a531b3
  • Loading branch information
varunagrawal committed Jan 13, 2021
1 parent e9080bf commit 9b03b6d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions cmake/GtwrapUtils.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -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})
Expand All @@ -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()
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
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',
Expand Down

0 comments on commit 9b03b6d

Please # to comment.