Skip to content

Commit 3424f1a

Browse files
authored
Merge branch 'main' into add-greybox
2 parents 57aa7af + 56a503b commit 3424f1a

File tree

2 files changed

+14
-8
lines changed

2 files changed

+14
-8
lines changed

.github/workflows/test_branches.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -352,10 +352,6 @@ jobs:
352352
if test "${{matrix.TARGET}}" == linux; then
353353
EXCLUDE="casadi numdifftools $EXCLUDE"
354354
fi
355-
if [[ "${{matrix.TARGET}}" == win && "${{matrix.python}}" == 3.13* ]]; then
356-
# As of Nov 7, 2024, qtconsole is not compatible with python 3.13 on win
357-
EXCLUDE="qtconsole $EXCLUDE"
358-
fi
359355
EXCLUDE=`echo "$EXCLUDE" | xargs`
360356
if test -n "$EXCLUDE"; then
361357
for WORD in $EXCLUDE; do

.github/workflows/test_pr_and_main.yml

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,11 @@ jobs:
9797
other: [""]
9898
category: [""]
9999

100+
# HACK: Avoid 3.13.7 on Windows. We exclude this originally...
101+
exclude:
102+
- os: windows-latest
103+
python: 3.13
104+
100105
include:
101106
- os: ubuntu-latest
102107
test_docs: 1
@@ -114,6 +119,15 @@ jobs:
114119
PYENV: conda
115120
PACKAGES: glpk pytest-qt filelock
116121

122+
# Now manually add 3.13.5 back in. Ergo, all other OS' will
123+
# run 3.13.7, but windows, the problem child, will not
124+
- os: windows-latest
125+
python: '3.13.5'
126+
test_docs: 1
127+
TARGET: win
128+
PYENV: conda
129+
PACKAGES: glpk pytest-qt filelock
130+
117131
- os: ubuntu-latest
118132
python: 3.11
119133
other: /conda
@@ -404,10 +418,6 @@ jobs:
404418
if test "${{matrix.TARGET}}" == linux; then
405419
EXCLUDE="casadi numdifftools $EXCLUDE"
406420
fi
407-
if [[ "${{matrix.TARGET}}" == win && "${{matrix.python}}" == 3.13* ]]; then
408-
# As of Nov 7, 2024, qtconsole is not compatible with python 3.13 on win
409-
EXCLUDE="qtconsole $EXCLUDE"
410-
fi
411421
EXCLUDE=`echo "$EXCLUDE" | xargs`
412422
if test -n "$EXCLUDE"; then
413423
for WORD in $EXCLUDE; do

0 commit comments

Comments
 (0)