From eb48a8f1e07c588d24c6b85074677508d824ea95 Mon Sep 17 00:00:00 2001 From: Axel Huebl Date: Wed, 22 Jan 2025 15:16:09 -0800 Subject: [PATCH] `setuptools[core]` https://setuptools.pypa.io/en/latest/userguide/quickstart.html#installation --- .github/workflows/ubuntu.yml | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index 1bad3545..2d1bf678 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -41,7 +41,9 @@ jobs: export CMAKE_BUILD_PARALLEL_LEVEL=4 - python3 -m pip install -U pip setuptools wheel pytest + python3 -m pip install -U pip + python3 -m pip install -U build packaging setuptools wheel + python3 -m pip install -U cmake AMREX_MPI=ON python3 -m pip install -v . python3 -c "import amrex.space1d as amr; print(amr.__version__)" python3 -c "import amrex.space2d as amr; print(amr.__version__)" @@ -80,7 +82,8 @@ jobs: export CC=$(which gcc-10) export CXX=$(which g++-10) - python3 -m pip install -U pip setuptools wheel + python3 -m pip install -U pip + python3 -m pip install -U build packaging setuptools wheel python3 -m pip install -U cmake python3 -m pip install -U pandas pytest mpi4py @@ -133,7 +136,9 @@ jobs: export CC=$(which clang-6.0) export CXX=$(which clang++-6.0) - python3 -m pip install -U pip pytest + python3 -m pip install -U pip + python3 -m pip install -U build packaging setuptools wheel + python3 -m pip install -U cmake pytest python3 -m pip install -v . python3 -c "import amrex.space1d as amr; print(amr.__version__)" python3 -c "import amrex.space2d as amr; print(amr.__version__)" @@ -177,6 +182,8 @@ jobs: export CMAKE_BUILD_PARALLEL_LEVEL=4 python3 -m pip install -U pip + python3 -m pip install -U build packaging setuptools wheel + python3 -m pip install -U cmake python3 -m pip install -U pandas pytest python3 -m pip install -v . python3 -c "import amrex.space1d as amr; print(amr.__version__)" @@ -222,7 +229,8 @@ jobs: export CXX=$(which g++) export CUDAHOSTCXX=$(which g++) - python3 -m pip install -U pip importlib_metadata launchpadlib setuptools wheel + python3 -m pip install -U pip + python3 -m pip install -U build packaging setuptools[core] wheel python3 -m pip install -U cmake cmake -S . -B build \