Skip to content

Commit

Permalink
Bump CMake version to 3.15
Browse files Browse the repository at this point in the history
It is a minimal version using which we can build hyperonc dependencies
from sources which is required by Python release procedure.
  • Loading branch information
vsbogd committed Jul 30, 2023
1 parent f4ca9a9 commit bbbee1e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-manual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ on:
cmake-version:
description: 'JSON array of CMake versions to be checked'
required: true
default: "[\"3.16.x\", \"3.22.x\", \"3.25.x\"]"
default: "[\"3.15.x\"]"
type: string

jobs:
Expand Down
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# minimum version required by $<IF..> generator expression
cmake_minimum_required(VERSION 3.10.2)
# Minimal version supported by hyperonc
cmake_minimum_required(VERSION 3.15)

project(hyperon)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Rust (see the Notes at the installation page).
* Python3 and Python3-dev (3.7 or later)
* Pip (23.1.2 or later)
* GCC (7.5 or later)
* CMake (3.10 or later)
* CMake (3.15 or later)

* Install cbindgen:
```
Expand Down
4 changes: 2 additions & 2 deletions c/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# minimum version required by $<IF..> generator expression
cmake_minimum_required(VERSION 3.10.2)
# Minimal version which allows building dependencies from sources
cmake_minimum_required(VERSION 3.15)
project(hyperonc)

enable_testing()
Expand Down

0 comments on commit bbbee1e

Please sign in to comment.