Skip to content

Commit ae39119

Browse files
authored
Release: 23.06 (#133)
The June release :)
1 parent f9b581a commit ae39119

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
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.05)
4+
project(pyAMReX VERSION 23.06)
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.05 CONFIG REQUIRED COMPONENTS PARTICLES PIC)
70+
find_package(AMReX 23.06 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 "07f87b0a9047a4306a056f60d71d6d49388a3497"
85+
set(pyAMReX_amrex_branch "23.06"
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
@@ -208,7 +208,7 @@ def build_extension(self, ext):
208208
setup(
209209
name="amrex",
210210
# note PEP-440 syntax: x.y.zaN but x.y.z.devN
211-
version="23.05",
211+
version="23.06",
212212
packages=["amrex"],
213213
# Python sources:
214214
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.05
18-
make_ParticleContainer_and_Iterators<SoAParticle<8, 2>, 8, 2>(m); // ImpactX 23.06+
17+
make_ParticleContainer_and_Iterators<Particle<0, 0>, 5, 0>(m); // ImpactX 22.07 - 23.06
18+
make_ParticleContainer_and_Iterators<SoAParticle<8, 2>, 8, 2>(m); // ImpactX 23.07+
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.05 1D-3D
17-
//make_ParticleContainer_and_Iterators<Particle<0, 0>, 5, 0> (m); // WarpX 22.07 - 23.05 RZ
16+
make_ParticleContainer_and_Iterators<Particle<0, 0>, 4, 0>(m); // WarpX 22.07 - 23.06 1D-3D
17+
//make_ParticleContainer_and_Iterators<Particle<0, 0>, 5, 0> (m); // WarpX 22.07 - 23.06 RZ
1818
}

src/Particle/StructOfArrays.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ void make_StructOfArrays(py::module &m)
7171

7272
void init_StructOfArrays(py::module& m) {
7373
make_StructOfArrays< 2, 1>(m);
74-
make_StructOfArrays< 4, 0>(m); // HiPACE++ 22.07
75-
make_StructOfArrays< 5, 0>(m); // ImpactX 22.07 - 23.06
76-
make_StructOfArrays< 8, 2>(m); // ImpactX 23.06+
77-
make_StructOfArrays<37, 1>(m); // HiPACE++ 22.07
74+
make_StructOfArrays< 4, 0>(m); // HiPACE++ 22.07+
75+
make_StructOfArrays< 5, 0>(m); // ImpactX 22.07 - 23.07
76+
make_StructOfArrays< 8, 2>(m); // ImpactX 23.07+
77+
make_StructOfArrays<37, 1>(m); // HiPACE++ 22.07+
7878
}

0 commit comments

Comments
 (0)