Skip to content

Commit cdb9e27

Browse files
authored
Release 25.02 (#5639)
Prepare the February release of WarpX: ```bash # update dependencies ./Tools/Release/updateAMReX.py ./Tools/Release/updatePICSAR.py ./Tools/Release/updatepyAMReX.py # bump version number ./Tools/Release/newVersion.sh ``` Following this workflow: https://warpx.readthedocs.io/en/latest/maintenance/release.html --------- Signed-off-by: Axel Huebl <[email protected]>
1 parent 12269a0 commit cdb9e27

File tree

10 files changed

+14
-14
lines changed

10 files changed

+14
-14
lines changed

.github/workflows/cuda.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ jobs:
127127
which nvcc || echo "nvcc not in PATH!"
128128
129129
git clone https://github.com/AMReX-Codes/amrex.git ../amrex
130-
cd ../amrex && git checkout --detach 69f1ac884c6aba4d9881260819ade3bb25ed8aad && cd -
130+
cd ../amrex && git checkout --detach 25.02 && cd -
131131
make COMP=gcc QED=FALSE USE_MPI=TRUE USE_GPU=TRUE USE_OMP=FALSE USE_FFT=TRUE USE_CCACHE=TRUE -j 4
132132
133133
ccache -s

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.24.0)
4-
project(WarpX VERSION 25.01)
4+
project(WarpX VERSION 25.02)
55

66
include(${WarpX_SOURCE_DIR}/cmake/WarpXFunctions.cmake)
77

Docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,9 +107,9 @@ def __init__(self, *args, **kwargs):
107107
# built documents.
108108
#
109109
# The short X.Y version.
110-
version = "25.01"
110+
version = "25.02"
111111
# The full version, including alpha/beta/rc tags.
112-
release = "25.01"
112+
release = "25.02"
113113

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

Python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565

6666
setup(
6767
name="pywarpx",
68-
version="25.01",
68+
version="25.02",
6969
packages=["pywarpx"],
7070
package_dir={"pywarpx": "pywarpx"},
7171
description="""Wrapper of WarpX""",

Tools/Release/releasePR.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ def concat_answers(answers):
9393

9494
# PICSAR New Version ##########################################################
9595

96-
PICSAR_version = "24.09"
96+
PICSAR_version = "25.01"
9797
answers = concat_answers(["y", PICSAR_version, PICSAR_version, "y"])
9898

9999
process = subprocess.Popen(

Tools/Release/weeklyUpdate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def concat_answers(answers):
8888

8989
# PICSAR New Version ##########################################################
9090

91-
PICSAR_version = "24.09"
91+
PICSAR_version = "25.01"
9292
answers = concat_answers(["y", PICSAR_version, PICSAR_version, "y"])
9393

9494
process = subprocess.Popen(

cmake/dependencies/AMReX.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ macro(find_amrex)
271271
endif()
272272
set(COMPONENT_PRECISION ${WarpX_PRECISION} P${WarpX_PARTICLE_PRECISION})
273273

274-
find_package(AMReX 25.01 CONFIG REQUIRED COMPONENTS ${COMPONENT_ASCENT} ${COMPONENT_CATALYST} ${COMPONENT_DIMS} ${COMPONENT_EB} ${COMPONENT_FFT} PARTICLES ${COMPONENT_PIC} ${COMPONENT_PRECISION} ${COMPONENT_SENSEI} LSOLVERS)
274+
find_package(AMReX 25.02 CONFIG REQUIRED COMPONENTS ${COMPONENT_ASCENT} ${COMPONENT_CATALYST} ${COMPONENT_DIMS} ${COMPONENT_EB} ${COMPONENT_FFT} PARTICLES ${COMPONENT_PIC} ${COMPONENT_PRECISION} ${COMPONENT_SENSEI} LSOLVERS)
275275
# note: TINYP skipped because user-configured and optional
276276

277277
# AMReX CMake helper scripts
@@ -294,7 +294,7 @@ set(WarpX_amrex_src ""
294294
set(WarpX_amrex_repo "https://github.com/AMReX-Codes/amrex.git"
295295
CACHE STRING
296296
"Repository URI to pull and build AMReX from if(WarpX_amrex_internal)")
297-
set(WarpX_amrex_branch "69f1ac884c6aba4d9881260819ade3bb25ed8aad"
297+
set(WarpX_amrex_branch "25.02"
298298
CACHE STRING
299299
"Repository branch for WarpX_amrex_repo if(WarpX_amrex_internal)")
300300

cmake/dependencies/PICSAR.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ function(find_picsar)
8888
#message(STATUS "PICSAR: Using version '${PICSAR_VERSION}'")
8989
else()
9090
# not supported by PICSAR (yet)
91-
#find_package(PICSAR 24.09 CONFIG REQUIRED QED)
91+
#find_package(PICSAR 25.01 CONFIG REQUIRED QED)
9292
#message(STATUS "PICSAR: Found version '${PICSAR_VERSION}'")
9393
message(FATAL_ERROR "PICSAR: Cannot be used as externally installed "
9494
"library yet. "
@@ -109,7 +109,7 @@ if(WarpX_QED)
109109
set(WarpX_picsar_repo "https://github.com/ECP-WarpX/picsar.git"
110110
CACHE STRING
111111
"Repository URI to pull and build PICSAR from if(WarpX_picsar_internal)")
112-
set(WarpX_picsar_branch "24.09"
112+
set(WarpX_picsar_branch "25.01"
113113
CACHE STRING
114114
"Repository branch for WarpX_picsar_repo if(WarpX_picsar_internal)")
115115

cmake/dependencies/pyAMReX.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ function(find_pyamrex)
5959
endif()
6060
elseif(NOT WarpX_pyamrex_internal)
6161
# TODO: MPI control
62-
find_package(pyAMReX 25.01 CONFIG REQUIRED)
62+
find_package(pyAMReX 25.02 CONFIG REQUIRED)
6363
message(STATUS "pyAMReX: Found version '${pyAMReX_VERSION}'")
6464
endif()
6565
endfunction()
@@ -74,7 +74,7 @@ option(WarpX_pyamrex_internal "Download & build pyAMReX" ON)
7474
set(WarpX_pyamrex_repo "https://github.com/AMReX-Codes/pyamrex.git"
7575
CACHE STRING
7676
"Repository URI to pull and build pyamrex from if(WarpX_pyamrex_internal)")
77-
set(WarpX_pyamrex_branch "458c9ae7ab3cd4ca4e4e9736e82c60f9a7e7606c"
77+
set(WarpX_pyamrex_branch "25.02"
7878
CACHE STRING
7979
"Repository branch for WarpX_pyamrex_repo if(WarpX_pyamrex_internal)")
8080

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ def build_extension(self, ext):
280280
setup(
281281
name="pywarpx",
282282
# note PEP-440 syntax: x.y.zaN but x.y.z.devN
283-
version="25.01",
283+
version="25.02",
284284
packages=["pywarpx"],
285285
package_dir={"pywarpx": "Python/pywarpx"},
286286
author="Jean-Luc Vay, David P. Grote, Maxence Thévenet, Rémi Lehe, Andrew Myers, Weiqun Zhang, Axel Huebl, et al.",

0 commit comments

Comments
 (0)