Skip to content

Commit b7ce288

Browse files
authored
Release: 24.12 (#394)
December release.
1 parent 6d64333 commit b7ce288

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
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.24.0)
4-
project(pyAMReX VERSION 24.11)
4+
project(pyAMReX VERSION 24.12)
55

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

cmake/dependencies/AMReX.cmake

+2-2
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ macro(find_amrex)
6767
message(STATUS "Searching for pre-installed AMReX ...")
6868
# https://amrex-codes.github.io/amrex/docs_html/BuildingAMReX.html#importing-amrex-into-your-cmake-project
6969
# not strictly required yet to compile pyAMReX: EB
70-
find_package(AMReX 24.11 CONFIG REQUIRED COMPONENTS PARTICLES PIC)
70+
find_package(AMReX 24.12 CONFIG REQUIRED COMPONENTS PARTICLES PIC)
7171
message(STATUS "AMReX: Found version '${AMReX_VERSION}'")
7272

7373
if(AMReX_GPU_BACKEND STREQUAL CUDA)
@@ -86,7 +86,7 @@ option(pyAMReX_amrex_internal "Download & build AMReX" ON)
8686
set(pyAMReX_amrex_repo "https://github.com/AMReX-Codes/amrex.git"
8787
CACHE STRING
8888
"Repository URI to pull and build AMReX from if(pyAMReX_amrex_internal)")
89-
set(pyAMReX_amrex_branch "24.11"
89+
set(pyAMReX_amrex_branch "24.12"
9090
CACHE STRING
9191
"Repository branch for pyAMReX_amrex_repo if(pyAMReX_amrex_internal)")
9292

docs/source/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,9 @@
7272
# built documents.
7373
#
7474
# The short X.Y version.
75-
version = "24.11"
75+
version = "24.12"
7676
# The full version, including alpha/beta/rc tags.
77-
release = "24.11"
77+
release = "24.12"
7878

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

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ def build_extension(self, ext):
217217
setup(
218218
name="amrex",
219219
# note PEP-440 syntax: x.y.zaN but x.y.z.devN
220-
version="24.11",
220+
version="24.12",
221221
packages=["amrex"],
222222
# Python sources:
223223
package_dir={"": "src"},

0 commit comments

Comments
 (0)