From b831ba1f1abb0e5d309620ca302c77a1a8da5db9 Mon Sep 17 00:00:00 2001 From: Thomas Mooney Date: Wed, 21 Jun 2023 17:09:20 -0500 Subject: [PATCH] Also update the docs updater to python 3.10 and newer cwltool. --- .github/workflows/update_docs.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/update_docs.yml b/.github/workflows/update_docs.yml index dcb6588f..ef326a19 100644 --- a/.github/workflows/update_docs.yml +++ b/.github/workflows/update_docs.yml @@ -14,15 +14,12 @@ jobs: - name: Set up Python uses: actions/setup-python@v2 with: - python-version: 3.7 + python-version: '3.10' - name: Install dependencies run: | python -m pip install --upgrade pip - python -m pip install 'setuptools>=18.5' - python -m pip install 'cwltool==1.0.20181217162649' - python -m pip install 'ruamel.yaml==0.15.77' - python -m pip install 'mdutils==1.0.0' - python -m pip install 'PyYAML==5.1.2' + python -m pip install 'cwltool==3.1.20230601100705' + python -m pip install 'ruamel.yaml==0.17.27' - name: Create CWL documentation env: WIKI_ACCESS_TOKEN: ${{secrets.WIKI_ACCESS_TOKEN}}