Skip to content

Commit db89f75

Browse files
committed
build.yml: Change python-versions to leave off patch version.
This makes sure that the build uses the latest patch version for each python major.minor. Keep the pre-release for 3.13 explicit as I don't know how that will work before the first 3.13 release is out. Also make each version number be on a separate line so that adding and removing python versions is easier to see in diffs, e.g., like this: https://github.com/google/earthengine-api/blob/e44bb391af90c9b7dfde79d95b55116e79d0d6bf/.github/workflows/ci-tests.yml#L17
1 parent 844e529 commit db89f75

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

.github/workflows/build.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,18 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
python-version: ["2.7.18", "3.5.10", "3.6.15", "3.7.17", "3.8.18", "3.9.18", "3.10.13", "3.11.7", "3.12.1", "3.13.0a2"]
18+
python-version: [
19+
"2.7",
20+
"3.5",
21+
"3.6",
22+
"3.7",
23+
"3.8",
24+
"3.9",
25+
"3.10",
26+
"3.11",
27+
"3.12",
28+
"3.13.0a2",
29+
]
1930

2031
runs-on: ubuntu-latest
2132
container:

0 commit comments

Comments
 (0)