From 63fbfaca675adf3db008b82ced9a12f22332c0eb Mon Sep 17 00:00:00 2001 From: Wim Haeck Date: Fri, 5 Jul 2024 14:36:35 -0600 Subject: [PATCH 1/3] documentation correction --- python/src/id/ElementID.python.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/src/id/ElementID.python.cpp b/python/src/id/ElementID.python.cpp index 6fbbf67..53bf28f 100644 --- a/python/src/id/ElementID.python.cpp +++ b/python/src/id/ElementID.python.cpp @@ -33,7 +33,7 @@ void wrapElementID( python::module& module, python::module& ) { python::init< int >(), python::arg( "number" ), - "Initialise the reaction\n\n" + "Initialise the element identifier\n\n" "Arguments:\n" " self the reaction\n" " number the element number" From 201b98667140c28602dcb162c6c616f8b5f30bfa Mon Sep 17 00:00:00 2001 From: Wim Haeck Date: Mon, 15 Jul 2024 08:22:21 -0600 Subject: [PATCH 2/3] Update ContinuousIntegration.yml --- .github/workflows/ContinuousIntegration.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ContinuousIntegration.yml b/.github/workflows/ContinuousIntegration.yml index c08ad5c..b90a06a 100644 --- a/.github/workflows/ContinuousIntegration.yml +++ b/.github/workflows/ContinuousIntegration.yml @@ -16,8 +16,8 @@ jobs: runs-on: ${{matrix.os}} strategy: matrix: - os: [ ubuntu-20.04, macos-11 ] - cxx: [ clang++, g++-10 ] + os: [ ubuntu-22.04, macos-12 ] + cxx: [ clang++, g++-11 ] build_type: [ Debug, Release ] steps: From f480ac054dac054b248bed370c180a906fac7c0a Mon Sep 17 00:00:00 2001 From: Wim Haeck Date: Sun, 4 Aug 2024 19:12:24 -0600 Subject: [PATCH 3/3] Setting gcc version to 12 in github CI --- .github/workflows/ContinuousIntegration.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ContinuousIntegration.yml b/.github/workflows/ContinuousIntegration.yml index b90a06a..11bdc48 100644 --- a/.github/workflows/ContinuousIntegration.yml +++ b/.github/workflows/ContinuousIntegration.yml @@ -17,7 +17,7 @@ jobs: strategy: matrix: os: [ ubuntu-22.04, macos-12 ] - cxx: [ clang++, g++-11 ] + cxx: [ clang++, g++-12 ] build_type: [ Debug, Release ] steps: