|
1 | 1 | #!/usr/bin/env python3 |
2 | 2 | # |
3 | | -# Copyright 2021-2022 The AMReX Community |
| 3 | +# Copyright 2021-2023 The AMReX Community |
4 | 4 | # |
5 | 5 | # Authors: Axel Huebl |
6 | 6 | # License: BSD-3-Clause-LBNL |
@@ -185,7 +185,7 @@ def build_extension(self, ext): |
185 | 185 | AMReX_src = os.environ.get("AMREX_SRC") |
186 | 186 | AMReX_internal = os.environ.get("AMREX_INTERNAL", "ON") |
187 | 187 | AMReX_repo = os.environ.get("AMREX_REPO", "https://github.com/AMReX-Codes/amrex.git") |
188 | | -AMReX_branch = os.environ.get("AMREX_BRANCH", "22.12") |
| 188 | +AMReX_branch = os.environ.get("AMREX_BRANCH", "23.01") |
189 | 189 | pybind11_internal = os.environ.get("PYBIND11_INTERNAL", "ON") |
190 | 190 |
|
191 | 191 | # https://cmake.org/cmake/help/v3.0/command/if.html |
@@ -220,16 +220,16 @@ def build_extension(self, ext): |
220 | 220 | setup( |
221 | 221 | name="amrex", |
222 | 222 | # note PEP-440 syntax: x.y.zaN but x.y.z.devN |
223 | | - version="22.12", |
| 223 | + version="23.01", |
224 | 224 | packages=["amrex"], |
225 | 225 | # Python sources: |
226 | 226 | package_dir={"": "src"}, |
227 | 227 | # pyAMReX authors: |
228 | | - author="Axel Huebl, Shreyas Ananthan, Steven R. Brandt, Andrew Myers, Weiqun Zhang, et al.", |
229 | | - |
| 228 | + author="Axel Huebl, Ryan Sandberg, Shreyas Ananthan, Remi Lehe, Weiqun Zhang, et al.", |
| 229 | + |
230 | 230 | # wheel/pypi packages: |
231 | | - maintainer="Axel Huebl, Shreyas Ananthan, Steven R. Brandt, Andrew Myers", |
232 | | - |
| 231 | + maintainer="Axel Huebl", |
| 232 | + maintainer_email="[email protected]", |
233 | 233 | description="AMReX: Software Framework for Block Structured AMR", |
234 | 234 | long_description=long_description, |
235 | 235 | long_description_content_type="text/markdown", |
|
0 commit comments