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 CMake version from 3.10 to 3.13 #152

Merged
merged 1 commit into from
Feb 23, 2022
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
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:

- name: Build sdist
run: |
python -m pip install cmake>=3.10
python -m pip install cmake>=3.13
python setup.py sdist

- uses: actions/upload-artifact@v2
Expand Down
2 changes: 1 addition & 1 deletion doc/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ The base prerequisites to install SmartSim and SmartRedis are:

- Python 3.7-3.9
- Pip
- Cmake 3.10.x (or later)
- Cmake 3.13.x (or later)
- C compiler
- C++ compiler
- GNU Make > 4.0
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

[build-system]
requires = ["setuptools", "wheel", "cmake>=3.10"]
requires = ["setuptools", "wheel", "cmake>=3.13"]
build-backend = "setuptools.build_meta"

[tool.black]
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ classifiers =
packages = find:
setup_requires =
setuptools>=39.2
cmake>=3.10
cmake>=3.13
include_package_data = True
python_requires = >=3.7

Expand Down