Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update wrapper #665

Merged
merged 2 commits into from
Jan 13, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions wrap/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 wrap/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