From f05020d293533a61ab6f37e854fe097f5f252b41 Mon Sep 17 00:00:00 2001 From: Kevin Jacobson Date: Wed, 11 Dec 2024 12:40:24 -0500 Subject: [PATCH 1/3] Update docs pipeline to python 3.9 to try to fix dependency versioning issues --- .github/workflows/host_docs.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/host_docs.yml b/.github/workflows/host_docs.yml index 636cd100..d5b7449a 100644 --- a/.github/workflows/host_docs.yml +++ b/.github/workflows/host_docs.yml @@ -17,7 +17,7 @@ jobs: - uses: actions/setup-python@v2 with: - python-version: 3.8 + python-version: 3.9 - name: Run unit test run: | @@ -34,7 +34,7 @@ jobs: echo "============================================================="; source $CONDA/etc/profile.d/conda.sh; echo $CONDA/bin >> $GITHUB_PATH; - conda create -n OpenMDAO python=3.8 numpy=1 scipy=1 -q -y; + conda create -n OpenMDAO python=3.9 numpy=1 scipy=1 -q -y; conda activate OpenMDAO; pip install --upgrade pip echo "============================================================="; From 458722dde22f571fbaaf77aa99561c4edb59a65d Mon Sep 17 00:00:00 2001 From: Kevin Jacobson Date: Wed, 11 Dec 2024 12:41:01 -0500 Subject: [PATCH 2/3] Temporarily enable docs build on PR while debugging yml file --- .github/workflows/host_docs.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/host_docs.yml b/.github/workflows/host_docs.yml index d5b7449a..15a2d2e2 100644 --- a/.github/workflows/host_docs.yml +++ b/.github/workflows/host_docs.yml @@ -4,6 +4,8 @@ on: # Triggers the workflow on push events but only for the main branch push: branches: [ main ] + pull_request: + branches: [ main ] jobs: # This job is called test_docs. From 9fabd0343282eab24dbb85746167121bc6ff19b6 Mon Sep 17 00:00:00 2001 From: Kevin Jacobson Date: Wed, 11 Dec 2024 12:45:18 -0500 Subject: [PATCH 3/3] Disable docs deploy on PRs now that the build works --- .github/workflows/host_docs.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/host_docs.yml b/.github/workflows/host_docs.yml index 15a2d2e2..d5b7449a 100644 --- a/.github/workflows/host_docs.yml +++ b/.github/workflows/host_docs.yml @@ -4,8 +4,6 @@ on: # Triggers the workflow on push events but only for the main branch push: branches: [ main ] - pull_request: - branches: [ main ] jobs: # This job is called test_docs.