From 757207b28bfabb96b6c8f5b4d753a79124b7b565 Mon Sep 17 00:00:00 2001 From: Axel Huebl Date: Mon, 4 Dec 2023 08:53:15 -0800 Subject: [PATCH] pyAMReX: 23.12 --- CMakeLists.txt | 2 +- docs/source/conf.py | 4 ++-- setup.py | 2 +- src/Particle/ParticleContainer_ImpactX.cpp | 4 ++-- src/Particle/ParticleContainer_WarpX.cpp | 4 ++-- src/Particle/StructOfArrays.cpp | 8 ++++---- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 14ce3e25..20032318 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ # Preamble #################################################################### # cmake_minimum_required(VERSION 3.20.0) -project(pyAMReX VERSION 23.11) +project(pyAMReX VERSION 23.12) include(${pyAMReX_SOURCE_DIR}/cmake/pyAMReXFunctions.cmake) diff --git a/docs/source/conf.py b/docs/source/conf.py index 58c498f6..5e905571 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -71,9 +71,9 @@ # built documents. # # The short X.Y version. -version = "23.11" +version = "23.12" # The full version, including alpha/beta/rc tags. -release = "23.11" +release = "23.12" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index c491d447..f99f9803 100644 --- a/setup.py +++ b/setup.py @@ -207,7 +207,7 @@ def build_extension(self, ext): setup( name="amrex", # note PEP-440 syntax: x.y.zaN but x.y.z.devN - version="23.11", + version="23.12", packages=["amrex"], # Python sources: package_dir={"": "src"}, diff --git a/src/Particle/ParticleContainer_ImpactX.cpp b/src/Particle/ParticleContainer_ImpactX.cpp index b9586481..591f5965 100644 --- a/src/Particle/ParticleContainer_ImpactX.cpp +++ b/src/Particle/ParticleContainer_ImpactX.cpp @@ -14,6 +14,6 @@ void init_ParticleContainer_ImpactX(py::module& m) { // TODO: we might need to move all or most of the defines in here into a // test/example submodule, so they do not collide with downstream projects - make_ParticleContainer_and_Iterators, 5, 0>(m); // ImpactX 22.07 - 23.11 - make_ParticleContainer_and_Iterators, 8, 2>(m); // ImpactX 23.12+ + make_ParticleContainer_and_Iterators, 5, 0>(m); // ImpactX 22.07 - 23.12 + make_ParticleContainer_and_Iterators, 8, 2>(m); // ImpactX 24.01+ } diff --git a/src/Particle/ParticleContainer_WarpX.cpp b/src/Particle/ParticleContainer_WarpX.cpp index ac4f1338..9d19dbd8 100644 --- a/src/Particle/ParticleContainer_WarpX.cpp +++ b/src/Particle/ParticleContainer_WarpX.cpp @@ -13,6 +13,6 @@ void init_ParticleContainer_WarpX(py::module& m) { // TODO: we might need to move all or most of the defines in here into a // test/example submodule, so they do not collide with downstream projects - make_ParticleContainer_and_Iterators, 4, 0>(m); // WarpX 22.07 - 23.11 1D-3D - //make_ParticleContainer_and_Iterators, 5, 0> (m); // WarpX 22.07 - 23.11 RZ + make_ParticleContainer_and_Iterators, 4, 0>(m); // WarpX 22.07 - 23.12 1D-3D + //make_ParticleContainer_and_Iterators, 5, 0> (m); // WarpX 22.07 - 23.12 RZ } diff --git a/src/Particle/StructOfArrays.cpp b/src/Particle/StructOfArrays.cpp index f133d252..c26ad19c 100644 --- a/src/Particle/StructOfArrays.cpp +++ b/src/Particle/StructOfArrays.cpp @@ -89,8 +89,8 @@ void make_StructOfArrays(py::module &m) void init_StructOfArrays(py::module& m) { make_StructOfArrays< 2, 1>(m); - make_StructOfArrays< 4, 0>(m); // HiPACE++ 22.08 - 23.11 - make_StructOfArrays< 5, 0>(m); // ImpactX 22.07 - 23.11 - make_StructOfArrays< 8, 2>(m); // ImpactX 23.12+ - make_StructOfArrays<37, 1>(m); // HiPACE++ 22.09 - 23.11 + make_StructOfArrays< 4, 0>(m); // HiPACE++ 22.08 - 23.12 + make_StructOfArrays< 5, 0>(m); // ImpactX 22.07 - 23.12 + make_StructOfArrays< 8, 2>(m); // ImpactX 24.01+ + make_StructOfArrays<37, 1>(m); // HiPACE++ 22.09 - 23.12 }