Skip to content

Commit a47db85

Browse files
authored
Release: 23.11 (#219)
* Release: 23.11 The November release 🎉 * Update stub files
1 parent ba18b0f commit a47db85

File tree

15 files changed

+25
-25
lines changed

15 files changed

+25
-25
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.10)
4+
project(pyAMReX VERSION 23.11)
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.10 CONFIG REQUIRED COMPONENTS PARTICLES PIC)
73+
find_package(AMReX 23.11 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 "be6c6415467d09da6109d27cfa218868abc1f9db"
88+
set(pyAMReX_amrex_branch "23.11"
8989
CACHE STRING
9090
"Repository branch for pyAMReX_amrex_repo if(pyAMReX_amrex_internal)")
9191

docs/source/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@
7171
# built documents.
7272
#
7373
# The short X.Y version.
74-
version = "23.10"
74+
version = "23.11"
7575
# The full version, including alpha/beta/rc tags.
76-
release = "23.10"
76+
release = "23.11"
7777

7878
# The language for content autogenerated by Sphinx. Refer to documentation
7979
# for a list of supported languages.

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ def build_extension(self, ext):
207207
setup(
208208
name="amrex",
209209
# note PEP-440 syntax: x.y.zaN but x.y.z.devN
210-
version="23.10",
210+
version="23.11",
211211
packages=["amrex"],
212212
# Python sources:
213213
package_dir={"": "src"},

src/Particle/Particle.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -327,6 +327,6 @@ void init_Particle(py::module& m) {
327327
make_Particle< 3, 2 > (m);
328328
make_Particle< 4, 0 > (m); // HiPACE++ 22.07
329329
make_Particle< 5, 0 > (m); // ImpactX 22.07
330-
make_Particle< 8, 2 > (m); // ImpactX 23.11+
330+
make_Particle< 8, 2 > (m); // ImpactX 23.12+
331331
make_Particle< 37, 1> (m); // HiPACE++ 22.07
332332
}

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.10
18-
make_ParticleContainer_and_Iterators<SoAParticle<8, 2>, 8, 2>(m); // ImpactX 23.11+
17+
make_ParticleContainer_and_Iterators<Particle<0, 0>, 5, 0>(m); // ImpactX 22.07 - 23.11
18+
make_ParticleContainer_and_Iterators<SoAParticle<8, 2>, 8, 2>(m); // ImpactX 23.12+
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.10 1D-3D
17-
//make_ParticleContainer_and_Iterators<Particle<0, 0>, 5, 0> (m); // WarpX 22.07 - 23.10 RZ
16+
make_ParticleContainer_and_Iterators<Particle<0, 0>, 4, 0>(m); // WarpX 22.07 - 23.11 1D-3D
17+
//make_ParticleContainer_and_Iterators<Particle<0, 0>, 5, 0> (m); // WarpX 22.07 - 23.11 RZ
1818
}

src/Particle/ParticleTile.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,6 @@ void init_ParticleTile(py::module& m) {
191191
make_ParticleTile<ParticleType_1_1, 2, 1> (m);
192192
make_ParticleTile<ParticleType_0_0, 4, 0> (m); // HiPACE++ 22.07
193193
make_ParticleTile<ParticleType_0_0, 5, 0> (m); // ImpactX 22.07
194-
make_ParticleTile<SoAParticleType_8_2, 8, 2> (m); // ImpactX 23.11+
194+
make_ParticleTile<SoAParticleType_8_2, 8, 2> (m); // ImpactX 23.12+
195195
make_ParticleTile<ParticleType_0_0, 37, 1> (m); // HiPACE++ 22.07
196196
}

src/Particle/StructOfArrays.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,8 @@ void make_StructOfArrays(py::module &m)
8989

9090
void init_StructOfArrays(py::module& m) {
9191
make_StructOfArrays< 2, 1>(m);
92-
make_StructOfArrays< 4, 0>(m); // HiPACE++ 22.08 - 23.10
93-
make_StructOfArrays< 5, 0>(m); // ImpactX 22.07 - 23.10
94-
make_StructOfArrays< 8, 2>(m); // ImpactX 23.11+
95-
make_StructOfArrays<37, 1>(m); // HiPACE++ 22.09 - 23.10
92+
make_StructOfArrays< 4, 0>(m); // HiPACE++ 22.08 - 23.11
93+
make_StructOfArrays< 5, 0>(m); // ImpactX 22.07 - 23.11
94+
make_StructOfArrays< 8, 2>(m); // ImpactX 23.12+
95+
make_StructOfArrays<37, 1>(m); // HiPACE++ 22.09 - 23.11
9696
}

src/amrex/space1d/__init__.pyi

+1-1
Original file line numberDiff line numberDiff line change
@@ -492,4 +492,4 @@ def d_decl(x, y, z):
492492

493493
__author__: str = "Axel Huebl, Ryan T. Sandberg, Shreyas Ananthan, David P. Grote, Revathi Jambunathan, Edoardo Zoni, Remi Lehe, Andrew Myers, Weiqun Zhang"
494494
__license__: str = "BSD-3-Clause-LBNL"
495-
__version__: str = "23.10-22-gbe6c6415467d"
495+
__version__: str = "23.11"

src/amrex/space1d/amrex_1d_pybind/__init__.pyi

+2-2
Original file line numberDiff line numberDiff line change
@@ -3575,7 +3575,7 @@ class BoxArray:
35753575
def size(self) -> int: ...
35763576

35773577
class Config:
3578-
amrex_version: typing.ClassVar[str] = "23.10-22-gbe6c6415467d"
3578+
amrex_version: typing.ClassVar[str] = "23.11"
35793579
gpu_backend = None
35803580
have_gpu: typing.ClassVar[bool] = False
35813581
have_mpi: typing.ClassVar[bool] = True
@@ -10855,4 +10855,4 @@ def write_single_level_plotfile(
1085510855

1085610856
__author__: str = "Axel Huebl, Ryan T. Sandberg, Shreyas Ananthan, David P. Grote, Revathi Jambunathan, Edoardo Zoni, Remi Lehe, Andrew Myers, Weiqun Zhang"
1085710857
__license__: str = "BSD-3-Clause-LBNL"
10858-
__version__: str = "23.10-22-gbe6c6415467d"
10858+
__version__: str = "23.11"

src/amrex/space2d/__init__.pyi

+1-1
Original file line numberDiff line numberDiff line change
@@ -492,4 +492,4 @@ def d_decl(x, y, z):
492492

493493
__author__: str = "Axel Huebl, Ryan T. Sandberg, Shreyas Ananthan, David P. Grote, Revathi Jambunathan, Edoardo Zoni, Remi Lehe, Andrew Myers, Weiqun Zhang"
494494
__license__: str = "BSD-3-Clause-LBNL"
495-
__version__: str = "23.10-22-gbe6c6415467d"
495+
__version__: str = "23.11"

src/amrex/space2d/amrex_2d_pybind/__init__.pyi

+2-2
Original file line numberDiff line numberDiff line change
@@ -3575,7 +3575,7 @@ class BoxArray:
35753575
def size(self) -> int: ...
35763576

35773577
class Config:
3578-
amrex_version: typing.ClassVar[str] = "23.10-22-gbe6c6415467d"
3578+
amrex_version: typing.ClassVar[str] = "23.11"
35793579
gpu_backend = None
35803580
have_gpu: typing.ClassVar[bool] = False
35813581
have_mpi: typing.ClassVar[bool] = True
@@ -10872,4 +10872,4 @@ def write_single_level_plotfile(
1087210872

1087310873
__author__: str = "Axel Huebl, Ryan T. Sandberg, Shreyas Ananthan, David P. Grote, Revathi Jambunathan, Edoardo Zoni, Remi Lehe, Andrew Myers, Weiqun Zhang"
1087410874
__license__: str = "BSD-3-Clause-LBNL"
10875-
__version__: str = "23.10-22-gbe6c6415467d"
10875+
__version__: str = "23.11"

src/amrex/space3d/__init__.pyi

+1-1
Original file line numberDiff line numberDiff line change
@@ -492,4 +492,4 @@ def d_decl(x, y, z):
492492

493493
__author__: str = "Axel Huebl, Ryan T. Sandberg, Shreyas Ananthan, David P. Grote, Revathi Jambunathan, Edoardo Zoni, Remi Lehe, Andrew Myers, Weiqun Zhang"
494494
__license__: str = "BSD-3-Clause-LBNL"
495-
__version__: str = "23.10-22-gbe6c6415467d"
495+
__version__: str = "23.11"

src/amrex/space3d/amrex_3d_pybind/__init__.pyi

+2-2
Original file line numberDiff line numberDiff line change
@@ -3575,7 +3575,7 @@ class BoxArray:
35753575
def size(self) -> int: ...
35763576

35773577
class Config:
3578-
amrex_version: typing.ClassVar[str] = "23.10-22-gbe6c6415467d"
3578+
amrex_version: typing.ClassVar[str] = "23.11"
35793579
gpu_backend = None
35803580
have_gpu: typing.ClassVar[bool] = False
35813581
have_mpi: typing.ClassVar[bool] = True
@@ -10896,4 +10896,4 @@ def write_single_level_plotfile(
1089610896

1089710897
__author__: str = "Axel Huebl, Ryan T. Sandberg, Shreyas Ananthan, David P. Grote, Revathi Jambunathan, Edoardo Zoni, Remi Lehe, Andrew Myers, Weiqun Zhang"
1089810898
__license__: str = "BSD-3-Clause-LBNL"
10899-
__version__: str = "23.10-22-gbe6c6415467d"
10899+
__version__: str = "23.11"

0 commit comments

Comments
 (0)