Skip to content

Commit

Permalink
Merge pull request #1473 from Libensemble/testing/macos_nlopt_version
Browse files Browse the repository at this point in the history
pick nlopt version based on OS
  • Loading branch information
jlnav authored Nov 20, 2024
2 parents 7ad9f25 + 3451d7e commit 58fc609
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/basic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,13 +71,16 @@ jobs:
- name: Install Ubuntu compilers
if: matrix.os == 'ubuntu-latest'
run: conda install gcc_linux-64
run: |
conda install gcc_linux-64
pip install nlopt==2.9.0
# Roundabout solution on macos for proper linking with mpicc
- name: Install macOS compilers
if: matrix.os == 'macos-latest'
run: |
conda install clang_osx-64
pip install nlopt==2.8.0
- name: Install basic testing/feature dependencies
run: |
Expand Down
1 change: 0 additions & 1 deletion install/testing_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,3 @@ anyio==4.6.2.post1
matplotlib==3.9.2
mpmath==1.3.0
rich==13.9.4
nlopt==2.9.0

0 comments on commit 58fc609

Please sign in to comment.