Skip to content

Commit b6af1b3

Browse files
authored
Release: 24.07 (#335)
1 parent b13f68c commit b6af1b3

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
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 24.06)
4+
project(pyAMReX VERSION 24.07)
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
@@ -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 24.06 CONFIG REQUIRED COMPONENTS PARTICLES PIC)
73+
find_package(AMReX 24.07 CONFIG REQUIRED COMPONENTS PARTICLES PIC)
7474
message(STATUS "AMReX: Found version '${AMReX_VERSION}'")
7575

7676
if(AMReX_GPU_BACKEND STREQUAL CUDA)
@@ -89,7 +89,7 @@ option(pyAMReX_amrex_internal "Download & build AMReX" ON)
8989
set(pyAMReX_amrex_repo "https://github.com/AMReX-Codes/amrex.git"
9090
CACHE STRING
9191
"Repository URI to pull and build AMReX from if(pyAMReX_amrex_internal)")
92-
set(pyAMReX_amrex_branch "1f038e767011e20100af6ab0db02c69cf7ebe55c"
92+
set(pyAMReX_amrex_branch "24.07"
9393
CACHE STRING
9494
"Repository branch for pyAMReX_amrex_repo if(pyAMReX_amrex_internal)")
9595

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
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.06"
75+
version = "24.07"
7676
# The full version, including alpha/beta/rc tags.
77-
release = "24.06"
77+
release = "24.07"
7878

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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ def build_extension(self, ext):
210210
setup(
211211
name="amrex",
212212
# note PEP-440 syntax: x.y.zaN but x.y.z.devN
213-
version="24.06",
213+
version="24.07",
214214
packages=["amrex"],
215215
# Python sources:
216216
package_dir={"": "src"},

0 commit comments

Comments
 (0)