Skip to content

Commit 2567ea9

Browse files
authored
wheel version in GHA (#412)
1 parent 9f592ae commit 2567ea9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/oas.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Set versions to test here ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2626
PYTHON_VERSION_OLDEST: ['3.8']
2727
PYTHON_VERSION_LATEST: ['3.11']
28-
PIP_VERSION_OLDEST: ['23.0.1'] # pip>=23.1 cannot build the oldest OpenMDAO
28+
WHEEL_VERSION_OLDEST: ['0.38.4'] # latest wheel cannot build the oldest OpenMDAO (3.17 or older)
2929
NUMPY_VERSION_OLDEST: ['1.20'] # latest is most recent on PyPI
3030
SCIPY_VERSION_OLDEST: ['1.6.0'] # latest is most recent on PyPI
3131
OPENMDAO_VERSION_OLDEST: ['3.15'] # latest is most recent on PyPI
@@ -91,7 +91,7 @@ jobs:
9191
- name: Install OAS and its dependencies (oldest versions)
9292
if: ${{ matrix.dep-versions == 'oldest' }}
9393
run: |
94-
python -m pip install pip==${{ matrix.PIP_VERSION_OLDEST }} --upgrade wheel
94+
python -m pip install wheel==${{ matrix.WHEEL_VERSION_OLDEST }}
9595
pip install numpy==${{ matrix.NUMPY_VERSION_OLDEST }} scipy==${{ matrix.SCIPY_VERSION_OLDEST }} openmdao==${{ matrix.OPENMDAO_VERSION_OLDEST }} mphys==${{ matrix.MPHYS_VERSION_OLDEST }}
9696
pip install -e .[test]
9797
- name: Install OAS and its dependencies (latest versions)

0 commit comments

Comments
 (0)