From 4cc07ce767dfbc81861cea94eeaa15170bd264da Mon Sep 17 00:00:00 2001 From: Tim Brooks <41971846+timryanb@users.noreply.github.com> Date: Wed, 25 Jun 2025 15:35:05 -0400 Subject: [PATCH 1/3] adding lapack to ci --- .github/workflows/unit_tests_and_docs.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/unit_tests_and_docs.yml b/.github/workflows/unit_tests_and_docs.yml index dbe6ea7b..cb7de757 100644 --- a/.github/workflows/unit_tests_and_docs.yml +++ b/.github/workflows/unit_tests_and_docs.yml @@ -42,6 +42,7 @@ jobs: conda create -n OpenMDAO -c conda-forge python=3.9 mamba=1.5.1 -q -y; conda activate OpenMDAO; pip install --upgrade pip; + mamba install -c conda-forge lapack -q -y; conda install numpy=1.26 scipy=1.13 -q -y; echo "============================================================="; echo "Install PETSc"; From 1ab168b0518b14846c4095c7b888678cdf70607e Mon Sep 17 00:00:00 2001 From: Tim Brooks <41971846+timryanb@users.noreply.github.com> Date: Wed, 25 Jun 2025 15:37:11 -0400 Subject: [PATCH 2/3] bump to python 3.10 --- .github/workflows/unit_tests_and_docs.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/unit_tests_and_docs.yml b/.github/workflows/unit_tests_and_docs.yml index cb7de757..71d1c9ce 100644 --- a/.github/workflows/unit_tests_and_docs.yml +++ b/.github/workflows/unit_tests_and_docs.yml @@ -23,7 +23,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-python@v2 with: - python-version: 3.9 + python-version: "3.10" - name: Install, run unit test, build docs run: | @@ -39,7 +39,7 @@ jobs: echo "============================================================="; source $CONDA/etc/profile.d/conda.sh; echo $CONDA/bin >> $GITHUB_PATH; - conda create -n OpenMDAO -c conda-forge python=3.9 mamba=1.5.1 -q -y; + conda create -n OpenMDAO -c conda-forge python=3.10 mamba=1.5.1 -q -y; conda activate OpenMDAO; pip install --upgrade pip; mamba install -c conda-forge lapack -q -y; From e7ac38df63008ec8114351f110e346383588bbaa Mon Sep 17 00:00:00 2001 From: Tim Brooks <41971846+timryanb@users.noreply.github.com> Date: Wed, 25 Jun 2025 15:39:41 -0400 Subject: [PATCH 3/3] removing scipy/numpy install --- .github/workflows/unit_tests_and_docs.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/unit_tests_and_docs.yml b/.github/workflows/unit_tests_and_docs.yml index 71d1c9ce..855b7569 100644 --- a/.github/workflows/unit_tests_and_docs.yml +++ b/.github/workflows/unit_tests_and_docs.yml @@ -43,7 +43,6 @@ jobs: conda activate OpenMDAO; pip install --upgrade pip; mamba install -c conda-forge lapack -q -y; - conda install numpy=1.26 scipy=1.13 -q -y; echo "============================================================="; echo "Install PETSc"; echo "=============================================================";