Skip to content

Commit f239940

Browse files
committed
Skip ambient for test-dist on Python 3.14
Reasoning in comment. Note that Python 3.14 is still tested for other runtimes.
1 parent 331683d commit f239940

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -271,6 +271,9 @@ jobs:
271271
- uses: ./src/.github/actions/setup-integration-tests
272272
with:
273273
python-version: ${{ matrix.python }}
274+
# Snakemake is not yet compatible with Python 3.14.
275+
# <https://github.com/snakemake/snakemake/pull/3739>
276+
ambient: ${{ matrix.python != '3.14' }}
274277

275278
- uses: actions/download-artifact@v8
276279
with:
@@ -281,6 +284,8 @@ jobs:
281284
run: python3 -m pip install --upgrade dist/nextstrain_cli-*-py3-none-any.whl
282285

283286
- uses: ./src/.github/actions/run-integration-tests
287+
with:
288+
ambient: ${{ matrix.python != '3.14' }}
284289

285290
test-standalone:
286291
needs: build-standalone

0 commit comments

Comments
 (0)