Skip to content

Commit 0020194

Browse files
authored
Merge branch 'master' into master
2 parents fc0af1b + 07d05b5 commit 0020194

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
strategy:
2929
fail-fast: false
3030
matrix:
31-
os: [ ubuntu-22.04, macos-13, windows-2022 ]
31+
os: [ ubuntu-22.04, macos-14, windows-2022 ]
3232
python-version: [ 3.9, "3.10", "3.11", "3.12", "3.13" ]
3333
include:
3434
# These are intended to just add their extra parameter to existing matrix combinations;
@@ -37,7 +37,7 @@ jobs:
3737
python-version: 3.12
3838
openmp: "True"
3939
single_action_config: false
40-
- os: macos-13
40+
- os: macos-14
4141
python-version: 3.12
4242
single_action_config: true
4343

@@ -84,7 +84,7 @@ jobs:
8484
strategy:
8585
fail-fast: false
8686
matrix:
87-
os: [ ubuntu-22.04, macos-13, windows-2022 ]
87+
os: [ ubuntu-22.04, macos-14, windows-2022 ]
8888
python-version: [ 3.9, "3.10", "3.11", "3.12", "3.13" ]
8989
build-cvxpy-base: [ true, false ] # whether to build cvxpy-base (true) or regular cvxpy (false)
9090
include:

.github/workflows/test_optional_solvers.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
os: [ ubuntu-22.04, macos-13, windows-2022 ]
20+
os: [ ubuntu-22.04, macos-14, windows-2022 ]
2121
steps:
2222
- uses: actions/checkout@v4
2323
- name: Set Additional Envs
@@ -50,4 +50,4 @@ jobs:
5050
env:
5151
RUNNER_OS: ${{ matrix.os }}
5252
PYTHON_VERSION: 3.12
53-
KNITRO_LICENSE: ${{ secrets.KNITRO_LICENSE }}
53+
KNITRO_LICENSE: ${{ secrets.KNITRO_LICENSE }}

continuous_integration/install_dependencies.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,15 @@ conda config --set remote_connect_timeout_secs 30.0
99
conda config --set remote_max_retries 10
1010
conda config --set remote_backoff_factor 2
1111
conda config --set remote_read_timeout_secs 120.0
12-
conda install mkl pip pytest pytest-cov hypothesis openblas "setuptools>65.5.1"
12+
conda install pip pytest pytest-cov hypothesis openblas "setuptools>65.5.1"
1313

1414
conda install scs
1515
python -m pip install clarabel osqp
1616

17+
if [[ "$RUNNER_OS" != "macOS" ]]; then
18+
conda install mkl
19+
fi
20+
1721
# Install newest stable versions for Python 3.13.
1822
if [[ "$PYTHON_VERSION" == "3.13" ]]; then
1923
conda install scipy numpy

0 commit comments

Comments
 (0)