Skip to content

Commit

Permalink
Merge pull request #62 from northwesternfintech/new-python
Browse files Browse the repository at this point in the history
Changed python version to 3.11
  • Loading branch information
stevenewald authored Nov 23, 2023
2 parents 48b556d + 12bea91 commit 442ea54
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion linter/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ find_package(quill REQUIRED) # Logging
find_package(argparse REQUIRED) # Argument parsing
find_package(CURL REQUIRED)
find_package(glaze REQUIRED)
find_package(Python COMPONENTS Interpreter Development REQUIRED)
find_package(Python 3.11 COMPONENTS Interpreter Development EXACT REQUIRED)
find_package(PythonLibs 3.11 EXACT REQUIRED)
find_package(pybind11 REQUIRED)
find_package(Crow REQUIRED)

Expand Down
4 changes: 2 additions & 2 deletions wrapper/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ find_package(argparse REQUIRED) # Argument parsing
find_package(rabbitmq-c REQUIRED)
find_package(CURL REQUIRED)
find_package(glaze REQUIRED)
find_package(Python 3.10 COMPONENTS Interpreter Development EXACT REQUIRED)
find_package(PythonLibs 3.10 EXACT REQUIRED)
find_package(Python 3.11 COMPONENTS Interpreter Development EXACT REQUIRED)
find_package(PythonLibs 3.11 EXACT REQUIRED)
find_package(pybind11 REQUIRED)

# Git version tracking
Expand Down

0 comments on commit 442ea54

Please sign in to comment.