Skip to content

Commit cd4aa36

Browse files
authored
Release: 23.05 (#126)
The May release :)
1 parent 5e95674 commit cd4aa36

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
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.04)
4+
project(pyAMReX VERSION 23.05)
55

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

cmake/dependencies/AMReX.cmake

Lines changed: 2 additions & 2 deletions
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.04 CONFIG REQUIRED COMPONENTS PARTICLES PIC)
70+
find_package(AMReX 23.05 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 "ee492f47704ae8b094ad9bb4b6f758d82606a61e"
85+
set(pyAMReX_amrex_branch "23.05"
8686
CACHE STRING
8787
"Repository branch for pyAMReX_amrex_repo if(pyAMReX_amrex_internal)")
8888

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ def build_extension(self, ext):
222222
setup(
223223
name="amrex",
224224
# note PEP-440 syntax: x.y.zaN but x.y.z.devN
225-
version="23.04",
225+
version="23.05",
226226
packages=["amrex"],
227227
# Python sources:
228228
package_dir={"": "src"},

src/Particle/ParticleContainer_ImpactX.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ void init_ParticleContainer_ImpactX(py::module& m) {
1414

1515
// TODO: we might need to move all or most of the defines in here into a
1616
// test/example submodule, so they do not collide with downstream projects
17-
make_ParticleContainer_and_Iterators<Particle<0, 0>, 5, 0>(m); // ImpactX 22.07 - 23.04
18-
make_ParticleContainer_and_Iterators<SoAParticle<8, 2>, 8, 2>(m); // ImpactX 23.05+
17+
make_ParticleContainer_and_Iterators<Particle<0, 0>, 5, 0>(m); // ImpactX 22.07 - 23.05
18+
make_ParticleContainer_and_Iterators<SoAParticle<8, 2>, 8, 2>(m); // ImpactX 23.06+
1919
}

src/Particle/ParticleContainer_WarpX.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ void init_ParticleContainer_WarpX(py::module& m) {
1313

1414
// TODO: we might need to move all or most of the defines in here into a
1515
// test/example submodule, so they do not collide with downstream projects
16-
make_ParticleContainer_and_Iterators<Particle<0, 0>, 4, 0>(m); // WarpX 22.07 - 23.04 1D-3D
17-
//make_ParticleContainer_and_Iterators<Particle<0, 0>, 5, 0> (m); // WarpX 22.07 - 23.04 RZ
16+
make_ParticleContainer_and_Iterators<Particle<0, 0>, 4, 0>(m); // WarpX 22.07 - 23.05 1D-3D
17+
//make_ParticleContainer_and_Iterators<Particle<0, 0>, 5, 0> (m); // WarpX 22.07 - 23.05 RZ
1818
}

src/Particle/StructOfArrays.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ void make_StructOfArrays(py::module &m)
7272
void init_StructOfArrays(py::module& m) {
7373
make_StructOfArrays< 2, 1>(m);
7474
make_StructOfArrays< 4, 0>(m); // HiPACE++ 22.07
75-
make_StructOfArrays< 5, 0>(m); // ImpactX 22.07 - 23.04
76-
make_StructOfArrays< 8, 2>(m); // ImpactX 23.04+
75+
make_StructOfArrays< 5, 0>(m); // ImpactX 22.07 - 23.06
76+
make_StructOfArrays< 8, 2>(m); // ImpactX 23.06+
7777
make_StructOfArrays<37, 1>(m); // HiPACE++ 22.07
7878
}

0 commit comments

Comments
 (0)