Skip to content

Commit

Permalink
Add compatibility with CMake 3.30
Browse files Browse the repository at this point in the history
  • Loading branch information
buddly27 committed Aug 9, 2024
1 parent df9e397 commit 899d186
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
fail-fast: false
matrix:
pytest: [ "7", "8" ]
cmake: [ "3.20", "3.29" ]
cmake: [ "3.20", "3.30" ]
os: [ "ubuntu", "macos", "windows" ]
python: [ "3.8", "3.11", "3.12" ]
bundled: [ false, true ]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Pytest CMake

[![PyPi version](https://img.shields.io/pypi/v/pytest-cmake.svg?logo=pypi&label=PyPI&logoColor=gold)](https://pypi.python.org/pypi/pytest-cmake)
[![CMake](https://img.shields.io/badge/CMake-3.20...3.29-blue.svg?logo=CMake&logoColor=blue)](https://cmake.org)
[![CMake](https://img.shields.io/badge/CMake-3.20...3.30-blue.svg?logo=CMake&logoColor=blue)](https://cmake.org)
[![Test](https://github.com/python-cmake/pytest-cmake/actions/workflows/test.yml/badge.svg?branch=main)](https://github.com/python-cmake/pytest-cmake/actions/workflows/test.yml)
[![License](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

Expand Down
2 changes: 1 addition & 1 deletion cmake/FindPytest.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# prepend a custom search path.
# (https://cmake.org/cmake/help/latest/policy/CMP0074.html)

cmake_minimum_required(VERSION 3.20...3.29)
cmake_minimum_required(VERSION 3.20...3.30)

include(FindPackageHandleStandardArgs)

Expand Down
2 changes: 1 addition & 1 deletion cmake/PytestAddTests.cmake
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Wrapper used to create individual CTest tests from Pytest tests.
cmake_minimum_required(VERSION 3.20...3.29)
cmake_minimum_required(VERSION 3.20...3.30)

if(CMAKE_SCRIPT_MODE_FILE)

Expand Down
6 changes: 6 additions & 0 deletions doc/release/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@
Release Notes
*************

.. release:: Upcoming

.. change:: new

Added compatibility with CMake 3.30.

.. release:: 0.8.1
:date: 2024-08-08

Expand Down

0 comments on commit 899d186

Please sign in to comment.