mirror of
https://gitea.com/actions/setup-python.git
synced 2024-11-21 17:49:35 +01:00
feat: added python-version-strategy config option, to enable enforcing use of the lowest supported (approximate) version
This commit is contained in:
parent
0a5c615913
commit
6d804ec3f0
1 changed files with 4 additions and 0 deletions
|
@ -53,6 +53,7 @@ function resolveVersionInputFromDefaultFile(): string[] {
|
|||
function resolveVersionInput() {
|
||||
let versions = core.getMultilineInput('python-version');
|
||||
const versionFile = core.getInput('python-version-file');
|
||||
const versionStrategy = core.getInput('python-version-strategy');
|
||||
|
||||
if (versions.length) {
|
||||
if (versionFile) {
|
||||
|
@ -73,6 +74,9 @@ function resolveVersionInput() {
|
|||
}
|
||||
}
|
||||
|
||||
if(versionStrategy == "approximate")
|
||||
versions.map(v => v.replace(">=", "~").replace("^", "~"));
|
||||
|
||||
return versions;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue