File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
2829 NUMPY_VERSION_OLDEST : ['1.20'] # latest is most recent on PyPI
2930 SCIPY_VERSION_OLDEST : ['1.6.0'] # latest is most recent on PyPI
3031 OPENMDAO_VERSION_OLDEST : ['3.15'] # latest is most recent on PyPI
8990 - name : Install OAS and its dependencies (oldest versions)
9091 if : ${{ matrix.dep-versions == 'oldest' }}
9192 run : |
92- python -m pip install --upgrade pip wheel
93+ python -m pip install pip==${{ matrix.PIP_VERSION_OLDEST }} --upgrade wheel
9394 pip install numpy==${{ matrix.NUMPY_VERSION_OLDEST }} scipy==${{ matrix.SCIPY_VERSION_OLDEST }} openmdao==${{ matrix.OPENMDAO_VERSION_OLDEST }} mphys==${{ matrix.MPHYS_VERSION_OLDEST }}
9495 pip install -e .[test]
9596 - name : Install OAS and its dependencies (latest versions)
You can’t perform that action at this time.
0 commit comments