diff options
-rw-r--r-- | CMakeLists.txt | 2 | ||||
-rw-r--r-- | Docs/source/conf.py | 4 | ||||
-rw-r--r-- | LICENSE.txt | 2 | ||||
-rw-r--r-- | Python/setup.py | 2 | ||||
-rw-r--r-- | cmake/dependencies/AMReX.cmake | 4 | ||||
-rw-r--r-- | cmake/dependencies/PICSAR.cmake | 4 | ||||
-rwxr-xr-x | run_test.sh | 4 | ||||
-rw-r--r-- | setup.py | 2 |
8 files changed, 12 insertions, 12 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 444bb75c0..fc5813205 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ # Preamble #################################################################### # cmake_minimum_required(VERSION 3.15.0) -project(WarpX VERSION 21.03) +project(WarpX VERSION 21.04) include(${WarpX_SOURCE_DIR}/cmake/WarpXFunctions.cmake) diff --git a/Docs/source/conf.py b/Docs/source/conf.py index c1882fcb7..f4d60c332 100644 --- a/Docs/source/conf.py +++ b/Docs/source/conf.py @@ -66,9 +66,9 @@ author = 'WarpX collaboration' # built documents. # # The short X.Y version. -version = u'21.03' +version = u'21.04' # The full version, including alpha/beta/rc tags. -release = u'21.03' +release = u'21.04' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/LICENSE.txt b/LICENSE.txt index 4ae9ed3d7..71b932654 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,4 +1,4 @@ -WarpX v21.03 Copyright (c) 2018-2021, The Regents of the University of California, through Lawrence Berkeley National Laboratory, and Lawrence Livermore National Security, LLC, for the operation of Lawrence Livermore National Laboratory (subject to receipt of any required approvals from the U.S. Dept. of Energy). All rights reserved. +WarpX v21.04 Copyright (c) 2018-2021, The Regents of the University of California, through Lawrence Berkeley National Laboratory, and Lawrence Livermore National Security, LLC, for the operation of Lawrence Livermore National Laboratory (subject to receipt of any required approvals from the U.S. Dept. of Energy). All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/Python/setup.py b/Python/setup.py index 9f70fa0e4..d7ecaa130 100644 --- a/Python/setup.py +++ b/Python/setup.py @@ -54,7 +54,7 @@ else: package_data = {} setup(name = 'pywarpx', - version = '21.03', + version = '21.04', packages = ['pywarpx'], package_dir = {'pywarpx': 'pywarpx'}, description = """Wrapper of WarpX""", diff --git a/cmake/dependencies/AMReX.cmake b/cmake/dependencies/AMReX.cmake index 347bf582e..dc855829f 100644 --- a/cmake/dependencies/AMReX.cmake +++ b/cmake/dependencies/AMReX.cmake @@ -178,7 +178,7 @@ macro(find_amrex) endif() set(COMPONENT_PRECISION ${WarpX_PRECISION} P${WarpX_PRECISION}) - find_package(AMReX 21.03 CONFIG REQUIRED COMPONENTS ${COMPONENT_ASCENT} ${COMPONENT_DIM} ${COMPONENT_EB} PARTICLES ${COMPONENT_PIC} ${COMPONENT_PRECISION} TINYP LSOLVERS) + find_package(AMReX 21.04 CONFIG REQUIRED COMPONENTS ${COMPONENT_ASCENT} ${COMPONENT_DIM} ${COMPONENT_EB} PARTICLES ${COMPONENT_PIC} ${COMPONENT_PRECISION} TINYP LSOLVERS) message(STATUS "AMReX: Found version '${AMReX_VERSION}'") endif() endmacro() @@ -192,7 +192,7 @@ set(WarpX_amrex_src "" set(WarpX_amrex_repo "https://github.com/AMReX-Codes/amrex.git" CACHE STRING "Repository URI to pull and build AMReX from if(WarpX_amrex_internal)") -set(WarpX_amrex_branch "92945ad3a3560031c43fe7f02b9cc252f8330708" +set(WarpX_amrex_branch "21.04" CACHE STRING "Repository branch for WarpX_amrex_repo if(WarpX_amrex_internal)") diff --git a/cmake/dependencies/PICSAR.cmake b/cmake/dependencies/PICSAR.cmake index a6cf95f3a..72c338380 100644 --- a/cmake/dependencies/PICSAR.cmake +++ b/cmake/dependencies/PICSAR.cmake @@ -82,7 +82,7 @@ function(find_picsar) #message(STATUS "PICSAR: Using version '${PICSAR_VERSION}'") else() # not supported by PICSAR (yet) - #find_package(PICSAR 21.03 CONFIG REQUIRED QED) + #find_package(PICSAR 21.04 CONFIG REQUIRED QED) #message(STATUS "PICSAR: Found version '${PICSAR_VERSION}'") message(FATAL_ERROR "PICSAR: Cannot be used as externally installed " "library yet. " @@ -103,7 +103,7 @@ if(WarpX_QED) set(WarpX_picsar_repo "https://github.com/ECP-WarpX/picsar.git" CACHE STRING "Repository URI to pull and build PICSAR from if(WarpX_picsar_internal)") - set(WarpX_picsar_branch "b35f07243c51ac35d47857fe36f0aafb6b517955" + set(WarpX_picsar_branch "348830b444c65ca305aa3f89cd72fef7c65abd7d" CACHE STRING "Repository branch for WarpX_picsar_repo if(WarpX_picsar_internal)") diff --git a/run_test.sh b/run_test.sh index 96d250eb4..b5adc9e6e 100755 --- a/run_test.sh +++ b/run_test.sh @@ -51,10 +51,10 @@ echo "cd $PWD" # Clone PICSAR and AMReX git clone https://github.com/AMReX-Codes/amrex.git -cd amrex && git checkout 92945ad3a3560031c43fe7f02b9cc252f8330708 && cd - +cd amrex && git checkout 21.04 && cd - # Use QED brach for QED tests git clone https://github.com/ECP-WarpX/picsar.git -cd picsar && git checkout b35f07243c51ac35d47857fe36f0aafb6b517955 && cd - +cd picsar && git checkout 348830b444c65ca305aa3f89cd72fef7c65abd7d && cd - # Clone the AMReX regression test utility git clone https://github.com/ECP-WarpX/regression_testing.git @@ -233,7 +233,7 @@ with open('./requirements.txt') as f: setup( name='pywarpx', # note PEP-440 syntax: x.y.zaN but x.y.z.devN - version = '21.03', + version = '21.04', packages = ['pywarpx'], package_dir = {'pywarpx': 'Python/pywarpx'}, author='Jean-Luc Vay, David P. Grote, Maxence Thévenet, Rémi Lehe, Andrew Myers, Weiqun Zhang, Axel Huebl, et al.', |