Skip to content

Commit 53faef0

Browse files
committed
initial commit for FTS release 2.7 branch
1 parent bf3e43f commit 53faef0

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

scripts/build_fts_env.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ base_env_build(){
133133
;;
134134
fts_latest_pt2_7_x | fts_release_pt2_7_x)
135135
clear_activate_env python3.12
136-
pip install ${pip_install_flags} torch==2.7.1 torchvision --index-url https://download.pytorch.org/whl/cu128
136+
pip install ${pip_install_flags} torch==2.7.1 --index-url https://download.pytorch.org/whl/cu128
137137
;;
138138
*)
139139
echo "no matching environment found, exiting..."

scripts/gen_fts_coverage.sh

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,8 @@ env_rebuild(){
107107
${repo_home}/scripts/build_fts_env.sh --repo_home=${repo_home} --target_env_name=$1 ${pip_flags_param} ${no_commit_pin_param}
108108
fi
109109
;;
110-
fts_latest_pt2_5_x | fts_release_pt2_5_x) # previous release still actively updated
110+
# fts_release_ptx_y_z) # minor versions eligible for patch releases
111+
fts_latest_pt2_5_x | fts_release_pt2_5_x | fts_latest_pt2_6_x | fts_release_pt2_6_x | fts_latest_pt2_7_x | fts_release_pt2_7_x)
111112
${repo_home}/scripts/build_fts_env.sh --repo_home=${repo_home} --target_env_name=$1 ${pip_flags_param} ${no_commit_pin_param}
112113
;;
113114
*)
@@ -127,7 +128,7 @@ collect_env_coverage(){
127128
cd ${repo_home}
128129
source ./scripts/infra_utils.sh
129130
case $1 in
130-
fts_latest | fts_release | fts_release_pt2_5_x)
131+
fts_latest | fts_release | fts_release_pt2_5_x | fts_release_pt2_6_x | fts_release_pt2_7_x)
131132
python -m coverage erase
132133
python -m coverage run --append --source src/finetuning_scheduler -m pytest src/finetuning_scheduler tests -v 2>&1 >> $coverage_session_log
133134
(./tests/special_tests.sh --mark_type=standalone --filter_pattern='test_f' --log_file=${coverage_session_log} 2>&1 >> ${temp_special_log}) > /dev/null
@@ -170,7 +171,7 @@ case ${target_env_name} in
170171
fts_latest)
171172
echo "No env-specific additional coverage currently required for ${target_env_name}" >> $coverage_session_log
172173
;;
173-
fts_release | fts_release_pt2_5_x)
174+
fts_release | fts_release_pt2_5_x | fts_release_pt2_5_x | fts_release_pt2_6_x | fts_release_pt2_7_x)
174175
echo "No env-specific additional coverage currently required for ${target_env_name}" >> $coverage_session_log
175176
;;
176177
# fts_release_ptx_y_z) # special path to be used when releasing a previous patch version after a new minor version available

src/finetuning_scheduler/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import time
22

33
_this_year = time.strftime("%Y")
4-
__version__ = "2.7.0.dev0"
4+
__version__ = "2.7.0rc0"
55
__author__ = "Dan Dale"
66
__author_email__ = "[email protected]"
77
__license__ = "Apache-2.0"

0 commit comments

Comments
 (0)