Skip to content

Commit eb4f3b8

Browse files
authored
Bump version to 2.6.2 (#276)
1 parent ae5b5a7 commit eb4f3b8

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/workflows/CI.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
container: ghcr.io/gridtools/gridtools-base:${{ matrix.compiler }}
1515
strategy:
1616
matrix:
17-
compiler: [gcc-8, gcc-10, gcc-11, gcc-12, gcc-13, clang-10, clang-15, clang-16, clang-17, clang-18]
17+
compiler: [gcc-10, gcc-11, gcc-12, gcc-13, clang-10, clang-15, clang-16, clang-17, clang-18]
1818
build_type: [Debug, Release]
1919
exclude:
2020
- compiler: gcc-10
@@ -37,8 +37,12 @@ jobs:
3737
- name: Enable Fortran
3838
if: startsWith(matrix.compiler, 'gcc')
3939
run: echo "TEST_FORTRAN=ON" >> $GITHUB_ENV
40+
- name: Set up Python
41+
uses: actions/setup-python@v5
42+
with:
43+
python-version: '3.10'
4044
- name: Install python modules
41-
run: pip3 install --user nose-py3 numpy
45+
run: python3 -m pip install nose-py3 numpy
4246
- name: Cache pFUnit
4347
id: cache-pfunit
4448
uses: actions/[email protected]

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ set(CMAKE_INSTALL_PREFIX "${CMAKE_CURRENT_SOURCE_DIR}/install" CACHE PATH "CMake
1515

1616
cmake_policy(SET CMP0048 NEW)
1717
cmake_minimum_required(VERSION 3.12.0)
18-
project(Serialbox LANGUAGES C CXX VERSION 2.6.1)
18+
project(Serialbox LANGUAGES C CXX VERSION 2.6.2)
1919

2020
set(CMAKE_CXX_EXTENSIONS OFF)
2121
set(CMAKE_C_EXTENSIONS OFF)

0 commit comments

Comments
 (0)