Skip to content

Commit a85608f

Browse files
ci: avoid dependabot-only failures in conda/docker (#1130)
1 parent f567e7c commit a85608f

3 files changed

Lines changed: 7 additions & 3 deletions

File tree

.github/workflows/CI.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,9 @@ jobs:
116116
shell: bash -l {0}
117117
strategy:
118118
matrix:
119-
python-version: ['3']
119+
# NOTE: pin to a known-supported CPython; `3` can resolve to free-threaded
120+
# builds (e.g. 3.14t) which PythonCall.jl doesn't support.
121+
python-version: ['3.13']
120122
os: ['ubuntu-latest']
121123

122124
steps:

.github/workflows/CI_conda_forge.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ jobs:
2020
strategy:
2121
fail-fast: false
2222
matrix:
23-
python-version: ['3.10', '3']
23+
# NOTE: pin to avoid free-threaded Python variants (e.g. 3.14t)
24+
python-version: ['3.10', '3.13']
2425
os: ['ubuntu-latest', 'windows-latest', 'macos-latest']
2526

2627
steps:

.github/workflows/docker_deploy.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ on:
55
- cron: "0 10 * * *"
66
push:
77
branches:
8-
- "**"
8+
- "master"
9+
- "release-*"
910
tags:
1011
- "v*.*.*"
1112
workflow_dispatch:

0 commit comments

Comments
 (0)