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

Document that minimum required CMake version is now 3.23.1 #689

Merged
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 conda/environments/cuspatial_dev_cuda11.0.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ dependencies:
- cudatoolkit=11.0
- gdal>=3.0.2
- geopandas>=0.11.0
- cmake>=3.20.1,!=3.23.0
- cmake>=3.23.1
- cython>=0.29,<0.30
- scikit-build>=0.13.1
- gtest=1.10.0
Expand Down
2 changes: 1 addition & 1 deletion conda/environments/cuspatial_dev_cuda11.1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ dependencies:
- cudatoolkit=11.1
- gdal>=3.0.2
- geopandas>=0.11.0
- cmake>=3.20.1,!=3.23.0
- cmake>=3.23.1
- cython>=0.29,<0.30
- scikit-build>=0.13.1
- gtest=1.10.0
Expand Down
2 changes: 1 addition & 1 deletion conda/environments/cuspatial_dev_cuda11.2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ dependencies:
- cudatoolkit=11.2
- gdal>=3.0.2
- geopandas>=0.11.0
- cmake>=3.20.1,!=3.23.0
- cmake>=3.23.1
- cython>=0.29,<0.30
- scikit-build>=0.13.1
- gtest=1.10.0
Expand Down
2 changes: 1 addition & 1 deletion conda/recipes/cuspatial/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ requirements:
host:
- python
- cython >=0.29,<0.30
- cmake>=3.20.1,!=3.23.0
- cmake>=3.23.1
- scikit-build>=0.13.1
- setuptools
- cudf {{ minor_version }}.*
Expand Down
2 changes: 1 addition & 1 deletion conda/recipes/libcuspatial/conda_build_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ cuda_compiler:
- nvcc

cmake_version:
- ">=3.20.1"
- ">=3.23.1"

gdal_version:
- ">3.5.0"
Expand Down
2 changes: 1 addition & 1 deletion cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# limitations under the License.
#=============================================================================

cmake_minimum_required(VERSION 3.20.1 FATAL_ERROR)
cmake_minimum_required(VERSION 3.23.1 FATAL_ERROR)

include(../fetch_rapids.cmake)
include(rapids-cmake)
Expand Down
2 changes: 1 addition & 1 deletion java/src/main/native/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#=============================================================================
cmake_minimum_required(VERSION 3.20.1 FATAL_ERROR)
cmake_minimum_required(VERSION 3.23.1 FATAL_ERROR)

include(../../../../fetch_rapids.cmake)

Expand Down
2 changes: 1 addition & 1 deletion python/cuspatial/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# the License.
# =============================================================================

cmake_minimum_required(VERSION 3.20.1 FATAL_ERROR)
cmake_minimum_required(VERSION 3.23.1 FATAL_ERROR)

set(cuspatial_version 22.10.00)

Expand Down
2 changes: 1 addition & 1 deletion python/cuspatial/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ requires = [
"setuptools",
"cython>=0.29,<0.30",
"scikit-build>=0.13.1",
"cmake>=3.20.1,!=3.23.0",
"cmake>=3.23.1",
"ninja",
]