File tree Expand file tree Collapse file tree 3 files changed +6
-5
lines changed
Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Original file line number Diff line number Diff 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..."
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 11import 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"
You can’t perform that action at this time.
0 commit comments