From cf74b2bd5a497e3ac7d4edcd41012ccb8f7c755d Mon Sep 17 00:00:00 2001 From: Kate Culver Date: Thu, 2 Jan 2025 12:27:35 -0800 Subject: [PATCH 1/2] Upgrade MIP to support MacOS --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index a6941a6..e655410 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ dash[diskcache]==2.17.1 dwave-ocean-sdk>=6.3.0 -mip==1.13.0 +mip==1.16rc0 plotly==5.6.0 tabulate==0.8.9 From fd2dc74b191cc7bce12948bb9669808d737e85b1 Mon Sep 17 00:00:00 2001 From: Kate Culver Date: Thu, 2 Jan 2025 13:24:16 -0800 Subject: [PATCH 2/2] Restrict CircleCI to single python version --- .circleci/config.yml | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index e3be489..5cc697d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -7,9 +7,12 @@ workflows: version: 2.1 tests: jobs: - - dwave/test-linux - - dwave/test-osx - - dwave/test-win + - dwave/test-linux-single-python: + python-version: 3.11.0 + - dwave/test-win-single-python: + python-version: 3.11.0 + - dwave/test-osx-single-python: + python-version: 3.11.0 weekly: triggers: @@ -21,6 +24,9 @@ workflows: - master - main jobs: - - dwave/test-linux - - dwave/test-osx - - dwave/test-win \ No newline at end of file + - dwave/test-linux-single-python: + python-version: 3.11.0 + - dwave/test-win-single-python: + python-version: 3.11.0 + - dwave/test-osx-single-python: + python-version: 3.11.0