Skip to content

Commit

Permalink
Something
Browse files Browse the repository at this point in the history
  • Loading branch information
larsevj committed Sep 9, 2024
1 parent 61e9df9 commit 20ae7fe
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ jobs:
os: [ubuntu-latest]
env:
OS: ${{ matrix.os }}
PYTHON: "3.11"
PYTHON: "3.12"

steps:
- uses: actions/checkout@v4

- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: 3.11
python-version: 3.12

- name: Install fmu-ensemble and test dependencies
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/fmu-ensemble.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
numpy-version: [numpy<2, numpy>=2]
numpy-version: ["numpy<2", "numpy>=2"]
exclude:
- python-version: "3.8"
numpy-version: "numpy>=2"
Expand Down Expand Up @@ -54,10 +54,10 @@ jobs:
run: |
pip install res2df
pip install .[tests,docs]
pip install ${{ matrix.numpy-version }}
pip install "${{ matrix.numpy-version }}""
- name: Install ecl2df
if: ${{ matrix.numpy-version == numpy<2 }}
if: matrix.numpy-version == 'numpy<2'
run: |
pip install ecl2df
Expand Down

0 comments on commit 20ae7fe

Please sign in to comment.