Skip to content

Commit

Permalink
Minimum version of python is now 3.8 (#1038)
Browse files Browse the repository at this point in the history
  • Loading branch information
alkino committed May 1, 2023
1 parent 309dc61 commit c4b218e
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ endif()
# Find required python packages
# =============================================================================
message(STATUS "CHECKING FOR PYTHON")
find_package(PythonInterp 3.7 REQUIRED)
find_package(PythonInterp 3.8 REQUIRED)
include(cmake/hpc-coding-conventions/cpp/cmake/bbp-find-python-module.cmake)
cpp_cc_find_python_module(jinja2 2.9.3 REQUIRED)
cpp_cc_find_python_module(pytest 3.3.0 REQUIRED)
Expand Down
2 changes: 1 addition & 1 deletion INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ To build the project from source, a modern C++ compiler with C++14 support is ne
- flex (>=2.6)
- bison (>=3.0)
- CMake (>=3.15)
- Python (>=3.7)
- Python (>=3.8)
- Python packages : jinja2 (>=2.10), pyyaml (>=3.13), pytest (>=4.0.0), sympy (>=1.3), textwrap

### On OS X
Expand Down
6 changes: 0 additions & 6 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -200,8 +200,6 @@ stages:
strategy:
matrix:
${{ if eq(variables.buildWheel, True) }}:
Python37:
python.version: '3.7'
Python38:
python.version: '3.8'
Python39:
Expand Down Expand Up @@ -251,10 +249,6 @@ stages:
strategy:
matrix:
${{ if eq(variables.buildWheel, True) }}:
Python37:
python.version: '3.7'
python.org.version: '3.7.9'
python.installer.name: 'macosx10.9.pkg'
Python38:
python.version: '3.8'
python.org.version: '3.8.10'
Expand Down

0 comments on commit c4b218e

Please sign in to comment.