We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 331683d commit f239940Copy full SHA for f239940
1 file changed
.github/workflows/ci.yaml
@@ -271,6 +271,9 @@ jobs:
271
- uses: ./src/.github/actions/setup-integration-tests
272
with:
273
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' }}
277
278
- uses: actions/download-artifact@v8
279
@@ -281,6 +284,8 @@ jobs:
281
284
run: python3 -m pip install --upgrade dist/nextstrain_cli-*-py3-none-any.whl
282
285
283
286
- uses: ./src/.github/actions/run-integration-tests
287
+ with:
288
289
290
test-standalone:
291
needs: build-standalone
0 commit comments