Skip to content

Commit 923c655

Browse files
authored
Release: 23.09 (#187)
* Release: 23.09 The September release :) * Update Stub Files * Update setup.py --------- Co-authored-by: ax3l <[email protected]>
1 parent 2808142 commit 923c655

File tree

12 files changed

+19
-19
lines changed

12 files changed

+19
-19
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.08)
4+
project(pyAMReX VERSION 23.09)
55

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

cmake/dependencies/AMReX.cmake

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ macro(find_amrex)
7070
elseif(NOT pyAMReX_amrex_internal)
7171
message(STATUS "Searching for pre-installed AMReX ...")
7272
# https://amrex-codes.github.io/amrex/docs_html/BuildingAMReX.html#importing-amrex-into-your-cmake-project
73-
find_package(AMReX 23.08 CONFIG REQUIRED COMPONENTS PARTICLES PIC)
73+
find_package(AMReX 23.09 CONFIG REQUIRED COMPONENTS PARTICLES PIC)
7474
message(STATUS "AMReX: Found version '${AMReX_VERSION}'")
7575
endif()
7676
endmacro()
@@ -85,7 +85,7 @@ option(pyAMReX_amrex_internal "Download & build AMReX" ON)
8585
set(pyAMReX_amrex_repo "https://github.com/AMReX-Codes/amrex.git"
8686
CACHE STRING
8787
"Repository URI to pull and build AMReX from if(pyAMReX_amrex_internal)")
88-
set(pyAMReX_amrex_branch "23.08"
88+
set(pyAMReX_amrex_branch "23.09"
8989
CACHE STRING
9090
"Repository branch for pyAMReX_amrex_repo if(pyAMReX_amrex_internal)")
9191

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ def build_extension(self, ext):
211211
setup(
212212
name="amrex",
213213
# note PEP-440 syntax: x.y.zaN but x.y.z.devN
214-
version="23.06",
214+
version="23.09",
215215
packages=["amrex"],
216216
# Python sources:
217217
package_dir={"": "src"},

src/Particle/ParticleContainer_ImpactX.cpp

+2-2
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.08
18-
make_ParticleContainer_and_Iterators<SoAParticle<8, 2>, 8, 2>(m); // ImpactX 23.09+
17+
make_ParticleContainer_and_Iterators<Particle<0, 0>, 5, 0>(m); // ImpactX 22.07 - 23.09
18+
make_ParticleContainer_and_Iterators<SoAParticle<8, 2>, 8, 2>(m); // ImpactX 23.10+
1919
}

src/Particle/ParticleContainer_WarpX.cpp

+2-2
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.08 1D-3D
17-
//make_ParticleContainer_and_Iterators<Particle<0, 0>, 5, 0> (m); // WarpX 22.07 - 23.08 RZ
16+
make_ParticleContainer_and_Iterators<Particle<0, 0>, 4, 0>(m); // WarpX 22.07 - 23.09 1D-3D
17+
//make_ParticleContainer_and_Iterators<Particle<0, 0>, 5, 0> (m); // WarpX 22.07 - 23.09 RZ
1818
}

src/Particle/StructOfArrays.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ void make_StructOfArrays(py::module &m)
8888
void init_StructOfArrays(py::module& m) {
8989
make_StructOfArrays< 2, 1>(m);
9090
make_StructOfArrays< 4, 0>(m); // HiPACE++ 22.08 - 23.06
91-
make_StructOfArrays< 5, 0>(m); // ImpactX 22.07 - 23.08
92-
make_StructOfArrays< 8, 2>(m); // ImpactX 23.09+
91+
make_StructOfArrays< 5, 0>(m); // ImpactX 22.07 - 23.09
92+
make_StructOfArrays< 8, 2>(m); // ImpactX 23.10+
9393
make_StructOfArrays<37, 1>(m); // HiPACE++ 22.09 - 23.06
9494
}

src/amrex/space1d/__init__.pyi

+1-1
Original file line numberDiff line numberDiff line change
@@ -471,4 +471,4 @@ def d_decl(x, y, z): ...
471471

472472
__author__: str = "Axel Huebl, Ryan T. Sandberg, Shreyas Ananthan, David P. Grote, Revathi Jambunathan, Edoardo Zoni, Remi Lehe, Andrew Myers, Weiqun Zhang"
473473
__license__: str = "BSD-3-Clause-LBNL"
474-
__version__: str = "23.08"
474+
__version__: str = "23.09"

src/amrex/space1d/amrex_1d_pybind/__init__.pyi

+2-2
Original file line numberDiff line numberDiff line change
@@ -1468,7 +1468,7 @@ class BoxArray:
14681468
def size(self) -> int: ...
14691469

14701470
class Config:
1471-
amrex_version: typing.ClassVar[str] = "23.08"
1471+
amrex_version: typing.ClassVar[str] = "23.09"
14721472
gpu_backend = None
14731473
have_gpu: typing.ClassVar[bool] = False
14741474
have_mpi: typing.ClassVar[bool] = True
@@ -7764,4 +7764,4 @@ def write_single_level_plotfile(
77647764

77657765
__author__: str = "Axel Huebl, Ryan T. Sandberg, Shreyas Ananthan, David P. Grote, Revathi Jambunathan, Edoardo Zoni, Remi Lehe, Andrew Myers, Weiqun Zhang"
77667766
__license__: str = "BSD-3-Clause-LBNL"
7767-
__version__: str = "23.08"
7767+
__version__: str = "23.09"

src/amrex/space2d/__init__.pyi

+1-1
Original file line numberDiff line numberDiff line change
@@ -471,4 +471,4 @@ def d_decl(x, y, z): ...
471471

472472
__author__: str = "Axel Huebl, Ryan T. Sandberg, Shreyas Ananthan, David P. Grote, Revathi Jambunathan, Edoardo Zoni, Remi Lehe, Andrew Myers, Weiqun Zhang"
473473
__license__: str = "BSD-3-Clause-LBNL"
474-
__version__: str = "23.08"
474+
__version__: str = "23.09"

src/amrex/space2d/amrex_2d_pybind/__init__.pyi

+2-2
Original file line numberDiff line numberDiff line change
@@ -1468,7 +1468,7 @@ class BoxArray:
14681468
def size(self) -> int: ...
14691469

14701470
class Config:
1471-
amrex_version: typing.ClassVar[str] = "23.08"
1471+
amrex_version: typing.ClassVar[str] = "23.09"
14721472
gpu_backend = None
14731473
have_gpu: typing.ClassVar[bool] = False
14741474
have_mpi: typing.ClassVar[bool] = True
@@ -7781,4 +7781,4 @@ def write_single_level_plotfile(
77817781

77827782
__author__: str = "Axel Huebl, Ryan T. Sandberg, Shreyas Ananthan, David P. Grote, Revathi Jambunathan, Edoardo Zoni, Remi Lehe, Andrew Myers, Weiqun Zhang"
77837783
__license__: str = "BSD-3-Clause-LBNL"
7784-
__version__: str = "23.08"
7784+
__version__: str = "23.09"

src/amrex/space3d/__init__.pyi

+1-1
Original file line numberDiff line numberDiff line change
@@ -471,4 +471,4 @@ def d_decl(x, y, z): ...
471471

472472
__author__: str = "Axel Huebl, Ryan T. Sandberg, Shreyas Ananthan, David P. Grote, Revathi Jambunathan, Edoardo Zoni, Remi Lehe, Andrew Myers, Weiqun Zhang"
473473
__license__: str = "BSD-3-Clause-LBNL"
474-
__version__: str = "23.08"
474+
__version__: str = "23.09"

src/amrex/space3d/amrex_3d_pybind/__init__.pyi

+2-2
Original file line numberDiff line numberDiff line change
@@ -1468,7 +1468,7 @@ class BoxArray:
14681468
def size(self) -> int: ...
14691469

14701470
class Config:
1471-
amrex_version: typing.ClassVar[str] = "23.08"
1471+
amrex_version: typing.ClassVar[str] = "23.09"
14721472
gpu_backend = None
14731473
have_gpu: typing.ClassVar[bool] = False
14741474
have_mpi: typing.ClassVar[bool] = True
@@ -7805,4 +7805,4 @@ def write_single_level_plotfile(
78057805

78067806
__author__: str = "Axel Huebl, Ryan T. Sandberg, Shreyas Ananthan, David P. Grote, Revathi Jambunathan, Edoardo Zoni, Remi Lehe, Andrew Myers, Weiqun Zhang"
78077807
__license__: str = "BSD-3-Clause-LBNL"
7808-
__version__: str = "23.08"
7808+
__version__: str = "23.09"

0 commit comments

Comments
 (0)