File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
- sigstore ~= 3.0
1
+ sigstore ~= 3.4
2
2
requests ~= 2.28
Original file line number Diff line number Diff line change @@ -37,15 +37,15 @@ if [[ "${0}" == "${BASH_SOURCE[0]}" ]]; then
37
37
die " Internal error: setup harness was executed instead of being sourced?"
38
38
fi
39
39
40
- # Check the Python version, making sure it's new enough (3.8 +)
40
+ # Check the Python version, making sure it's new enough (3.9 +)
41
41
# The installation step immediately below will technically catch this,
42
42
# but doing it explicitly gives us the opportunity to produce a better
43
43
# error message.
44
44
vers=$( python -V | cut -d ' ' -f2)
45
45
maj_vers=$( cut -d ' .' -f1 <<< " ${vers}" )
46
46
min_vers=$( cut -d ' .' -f2 <<< " ${vers}" )
47
47
48
- [[ " ${maj_vers} " == " 3" && " ${min_vers} " -ge 8 ]] || die " Bad Python version: ${vers} "
48
+ [[ " ${maj_vers} " == " 3" && " ${min_vers} " -ge 9 ]] || die " Bad Python version: ${vers} "
49
49
50
50
# If the user didn't explicitly configure a Python version with
51
51
# `actions/setup-python`, then we might be using the distribution's Python and
You can’t perform that action at this time.
0 commit comments