Skip to content

Commit 2f50400

Browse files
authored
Merge pull request #1797 from CEED/jeremy/petsc-3.23
petsc - require 3.23
2 parents a8edb68 + bfbde1a commit 2f50400

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

examples/fluids/navierstokes.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
#include "./include/petsc_ops.h"
1818
#include "qfunctions/newtonian_types.h"
1919

20-
#if PETSC_VERSION_LT(3, 22, 0)
21-
#error "PETSc v3.22 or later is required"
20+
#if PETSC_VERSION_LT(3, 23, 0)
21+
#error "PETSc v3.23 or later is required"
2222
#endif
2323

2424
// -----------------------------------------------------------------------------

examples/petsc/include/petscversion.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99
/// Petsc version check
1010
#pragma once
1111

12-
#if PETSC_VERSION_LT(3, 22, 0)
13-
#error "PETSc v3.22 or later is required"
12+
#if PETSC_VERSION_LT(3, 23, 0)
13+
#error "PETSc v3.23 or later is required"
1414
#endif

examples/solids/elasticity.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@
2121
#include "include/utils.h"
2222
#include "problems/problems.h"
2323

24-
#if PETSC_VERSION_LT(3, 22, 0)
25-
#error "PETSc v3.22 or later is required"
24+
#if PETSC_VERSION_LT(3, 23, 0)
25+
#error "PETSc v3.23 or later is required"
2626
#endif

0 commit comments

Comments
 (0)