Skip to content

Commit

Permalink
Release 23.05 (#352)
Browse files Browse the repository at this point in the history
Prepare the May release of ImpactX.
  • Loading branch information
ax3l authored May 3, 2023
1 parent 3401104 commit cea96b4
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 11 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Preamble ####################################################################
#
cmake_minimum_required(VERSION 3.20.0)
project(ImpactX VERSION 23.04)
project(ImpactX VERSION 23.05)

include(${ImpactX_SOURCE_DIR}/cmake/ImpactXFunctions.cmake)

Expand Down
7 changes: 2 additions & 5 deletions cmake/dependencies/ABLASTR.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,6 @@ macro(find_ablastr)
set(WarpX_openpmd_internal ${ImpactX_openpmd_internal} CACHE STRING
"Download & build openPMD-api" FORCE)
endif()
# temporary: can be removed once we update to ABLASTR 23.04+
set(openPMD_BUILD_SHARED_LIBS ${BUILD_SHARED_LIBS} CACHE INTERNAL "")
set(openPMD_INSTALL ${openPMD_BUILD_SHARED_LIBS} CACHE INTERNAL "")

# transitive control for FFT/PICSAR superbuild
# TODO (future)
Expand Down Expand Up @@ -138,7 +135,7 @@ macro(find_ablastr)
set(COMPONENT_DIM 3D)
set(COMPONENT_PRECISION ${ImpactX_PRECISION} P${ImpactX_PRECISION})

find_package(ABLASTR 23.04 CONFIG REQUIRED COMPONENTS ${COMPONENT_DIM})
find_package(ABLASTR 23.05 CONFIG REQUIRED COMPONENTS ${COMPONENT_DIM})
message(STATUS "ABLASTR: Found version '${ABLASTR_VERSION}'")
endif()

Expand Down Expand Up @@ -169,7 +166,7 @@ set(ImpactX_openpmd_src ""
set(ImpactX_ablastr_repo "https://github.com/ECP-WarpX/WarpX.git"
CACHE STRING
"Repository URI to pull and build ABLASTR from if(ImpactX_ablastr_internal)")
set(ImpactX_ablastr_branch "f71597fca2cf9d3700e7e11533f4a85a1846a2b8"
set(ImpactX_ablastr_branch "23.05"
CACHE STRING
"Repository branch for ImpactX_ablastr_repo if(ImpactX_ablastr_internal)")

Expand Down
4 changes: 2 additions & 2 deletions cmake/dependencies/pyAMReX.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ function(find_pyamrex)
endif()
elseif(NOT ImpactX_pyamrex_internal)
# TODO: MPI control
find_package(pyAMReX 23.04 CONFIG REQUIRED)
find_package(pyAMReX 23.05 CONFIG REQUIRED)
message(STATUS "pyAMReX: Found version '${pyamrex_VERSION}'")
endif()
endfunction()
Expand All @@ -76,7 +76,7 @@ option(ImpactX_pyamrex_internal "Download & build pyAMReX" ON)
set(ImpactX_pyamrex_repo "https://github.com/AMReX-Codes/pyamrex.git"
CACHE STRING
"Repository URI to pull and build pyamrex from if(ImpactX_pyamrex_internal)")
set(ImpactX_pyamrex_branch "a90fec615b314bb2d6143add9655cbf6afe61186"
set(ImpactX_pyamrex_branch "23.05"
CACHE STRING
"Repository branch for ImpactX_pyamrex_repo if(ImpactX_pyamrex_internal)")

Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,9 @@
# built documents.
#
# The short X.Y version.
version = "23.04"
version = "23.05"
# The full version, including alpha/beta/rc tags.
release = "23.04"
release = "23.05"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ def build_extension(self, ext):
setup(
name="impactx",
# note PEP-440 syntax: x.y.zaN but x.y.z.devN
version="23.04",
version="23.05",
packages=["impactx"],
# Python sources:
package_dir={"": "src/python"},
Expand Down

0 comments on commit cea96b4

Please sign in to comment.