Skip to content

Commit

Permalink
Try scipy 1.7.0 instead of 1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
eytanadler committed May 9, 2024
1 parent 04cf661 commit da8b3a8
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/openconcept.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
PIP_VERSION_OLDEST: ['23.0.1'] # pip>=23.1 cannot build the oldest OpenMDAO
SETUPTOOLS_VERSION_OLDEST: ['66.0.0'] # setuptools >= 67.0.0 can't build the oldest OpenMDAO
NUMPY_VERSION_OLDEST: ['1.20'] # latest is most recent on PyPI
SCIPY_VERSION_OLDEST: ['1.6.0'] # latest is most recent on PyPI
SCIPY_VERSION_OLDEST: ['1.7.0'] # latest is most recent on PyPI
OPENMDAO_VERSION_OLDEST: ['3.21'] # latest is most recent on PyPI
fail-fast: false
env:
Expand All @@ -51,13 +51,11 @@ jobs:
auto-update-conda: true
python-version: ${{ matrix.PYTHON_VERSION_LATEST }}

# include the nomkl when installing from conda since it seems that MKL does not work on the ARM Mac environments
- name: Install dependencies (oldest versions)
if: ${{ matrix.dep-versions == 'oldest' }}
run: |
conda config --set always_yes yes
python -m pip install pip==${{ matrix.PIP_VERSION_OLDEST }} setuptools==${{ matrix.SETUPTOOLS_VERSION_OLDEST }} --upgrade wheel
conda install nomkl
conda install -c conda-forge numpy=${{ matrix.NUMPY_VERSION_OLDEST }} scipy=${{ matrix.SCIPY_VERSION_OLDEST }}
pip install om-pycycle
- name: Install dependencies (latest versions)
Expand Down

0 comments on commit da8b3a8

Please sign in to comment.