Skip to content

Commit f1a1822

Browse files
committed
Update Docker and Singularity actions to resolve missing "packaging" package
1 parent 65e02c4 commit f1a1822

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/docker_build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,12 +79,12 @@ jobs:
7979
- uses: actions/checkout@v2
8080

8181
- name: Set up Python
82-
uses: actions/setup-python@v1
82+
uses: actions/setup-python@v5
8383

8484
- name: Install dependencies
8585
run: |
8686
python -m pip install --upgrade pip
87-
pip install six archspec
87+
pip install six archspec packaging
8888
8989
- name: Build container
9090
run: |

.github/workflows/singularity_build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,12 +79,12 @@ jobs:
7979
- uses: actions/checkout@v2
8080

8181
- name: Set up Python
82-
uses: actions/setup-python@v1
82+
uses: actions/setup-python@v5
8383

8484
- name: Install dependencies
8585
run: |
8686
python -m pip install --upgrade pip
87-
pip install six archspec
87+
pip install six archspec packaging
8888
8989
- name: Install Singularity
9090
run: |

0 commit comments

Comments
 (0)