Skip to content

Commit

Permalink
CI: Pin sumo-uploader for Python 3.8 workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mferrera committed Dec 11, 2024
1 parent 55b4952 commit 57ec00b
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/ci-fmudataio.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,15 @@ jobs:
pip install pip -U
pip install .[dev]
- name: Install fmu-sumo-uploader
if: matrix.python-version != '3.12'
- name: Install fmu-sumo-uploader for Python 3.8
if: matrix.python-version == '3.8'
run:
pip install \
"fmu-sumo-uploader @ git+https://github.com/equinor/fmu-sumo-uploader.git@66a9f9b"

# fmu-sumo-uploader blocked by OpenVDS on Python 3.12
- name: Install fmu-sumo-uploader for Python 3.9+
if: matrix.python-version != '3.12' && matrix.python-version != '3.8'
run:
pip install \
"fmu-sumo-uploader @ git+https://github.com/equinor/fmu-sumo-uploader.git"
Expand Down

0 comments on commit 57ec00b

Please sign in to comment.