Skip to content

Commit 0d34a0d

Browse files
authored
Release: 23.03 (#109)
Cuts a new release :)
1 parent d18ee40 commit 0d34a0d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Preamble ####################################################################
22
#
33
cmake_minimum_required(VERSION 3.20.0)
4-
project(pyAMReX VERSION 23.02)
4+
project(pyAMReX VERSION 23.03)
55

66
include(${pyAMReX_SOURCE_DIR}/cmake/pyAMReXFunctions.cmake)
77

cmake/dependencies/AMReX.cmake

+2-2
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ macro(find_amrex)
6767
elseif(NOT pyAMReX_amrex_internal)
6868
message(STATUS "Searching for pre-installed AMReX ...")
6969
# 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)
7171
message(STATUS "AMReX: Found version '${AMReX_VERSION}'")
7272
endif()
7373
endmacro()
@@ -82,7 +82,7 @@ option(pyAMReX_amrex_internal "Download & build AMReX" ON)
8282
set(pyAMReX_amrex_repo "https://github.com/AMReX-Codes/amrex.git"
8383
CACHE STRING
8484
"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"
8686
CACHE STRING
8787
"Repository branch for pyAMReX_amrex_repo if(pyAMReX_amrex_internal)")
8888

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ def build_extension(self, ext):
221221
setup(
222222
name="amrex",
223223
# note PEP-440 syntax: x.y.zaN but x.y.z.devN
224-
version="23.02",
224+
version="23.03",
225225
packages=["amrex"],
226226
# Python sources:
227227
package_dir={"": "src"},

0 commit comments

Comments
 (0)