We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db8484d commit 05cc475Copy full SHA for 05cc475
.github/workflows/python-nightly.yml
@@ -32,7 +32,11 @@ concurrency:
32
jobs:
33
tests:
34
name: "Python ${{ matrix.python-version }}"
35
- runs-on: ubuntu-latest
+ # Choose a recent Ubuntu that deadsnakes still builds all the versions for.
36
+ # For example, deadsnakes doesn't provide 3.10 nightly for 22.04 (jammy)
37
+ # because jammy ships 3.10, and deadsnakes doesn't want to clobber it.
38
+ # https://launchpad.net/~deadsnakes/+archive/ubuntu/nightly/+packages
39
+ runs-on: ubuntu-20.04
40
41
strategy:
42
matrix:
0 commit comments