Skip to content

Commit a5e8cc4

Browse files
authored
Move CURRENT_NIGHTLY_VERSION to 2.14.0 (#8226)
## Summary 2.13 has branched (`release/2.13`), so `main`'s nightly should now be **2.14.0**. Bumps `CURRENT_NIGHTLY_VERSION` in `tools/scripts/generate_binary_build_matrix.py`: ```python -CURRENT_NIGHTLY_VERSION = "2.13.0" +CURRENT_NIGHTLY_VERSION = "2.14.0" ``` ## Effect `CURRENT_NIGHTLY_VERSION` is consumed by `tools/scripts/generate_docker_release_matrix.py` to tag the nightly docker image (`pytorch/pytorch-nightly:<version>.dev<date>`). It is **not** part of the generated binary build matrix (the matrix's `stable_version` comes from `CURRENT_STABLE_VERSION`), and there is no docker-release-matrix unit test. `CURRENT_CANDIDATE_VERSION` and `CURRENT_STABLE_VERSION` are intentionally left unchanged (this PR only moves nightly, per request). ## Tests - `python -m unittest tools.tests.test_generate_binary_build_matrix` -> 7/7 pass, unchanged. - No test assets change: regenerating `tools/tests/assets/*.json` produces no diff, since those are nightly-channel matrices whose `stable_version` is `CURRENT_STABLE_VERSION` (2.12.1), independent of `CURRENT_NIGHTLY_VERSION`.
1 parent f9051bd commit a5e8cc4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tools/scripts/generate_binary_build_matrix.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
XPU = "xpu"
8585

8686

87-
CURRENT_NIGHTLY_VERSION = "2.13.0"
87+
CURRENT_NIGHTLY_VERSION = "2.14.0"
8888
CURRENT_CANDIDATE_VERSION = "2.12.1"
8989
CURRENT_STABLE_VERSION = "2.12.1"
9090
CURRENT_VERSION = CURRENT_STABLE_VERSION

0 commit comments

Comments
 (0)