File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
# Preamble ####################################################################
2
2
#
3
3
cmake_minimum_required (VERSION 3.20.0)
4
- project (pyAMReX VERSION 23.02 )
4
+ project (pyAMReX VERSION 23.03 )
5
5
6
6
include (${pyAMReX_SOURCE_DIR} /cmake/pyAMReXFunctions.cmake)
7
7
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ macro(find_amrex)
67
67
elseif (NOT pyAMReX_amrex_internal)
68
68
message (STATUS "Searching for pre-installed AMReX ..." )
69
69
# https://amrex-codes.github.io/amrex/docs_html/BuildingAMReX.html#importing-amrex-into-your-cmake-project
70
- find_package (AMReX 23.02 CONFIG REQUIRED COMPONENTS PARTICLES PIC)
70
+ find_package (AMReX 23.03 CONFIG REQUIRED COMPONENTS PARTICLES PIC)
71
71
message (STATUS "AMReX: Found version '${AMReX_VERSION} '" )
72
72
endif ()
73
73
endmacro ()
@@ -82,7 +82,7 @@ option(pyAMReX_amrex_internal "Download & build AMReX" ON)
82
82
set (pyAMReX_amrex_repo "https://github.com/AMReX-Codes/amrex.git"
83
83
CACHE STRING
84
84
"Repository URI to pull and build AMReX from if(pyAMReX_amrex_internal)" )
85
- set (pyAMReX_amrex_branch "23.02 "
85
+ set (pyAMReX_amrex_branch "23.03 "
86
86
CACHE STRING
87
87
"Repository branch for pyAMReX_amrex_repo if(pyAMReX_amrex_internal)" )
88
88
Original file line number Diff line number Diff line change @@ -221,7 +221,7 @@ def build_extension(self, ext):
221
221
setup (
222
222
name = "amrex" ,
223
223
# note PEP-440 syntax: x.y.zaN but x.y.z.devN
224
- version = "23.02 " ,
224
+ version = "23.03 " ,
225
225
packages = ["amrex" ],
226
226
# Python sources:
227
227
package_dir = {"" : "src" },
You can’t perform that action at this time.
0 commit comments