My project requires Python 2.7.7 because it has to be compatible with a game that uses this version. It will be cool if the setup-python supports old versions. Now it doesn't:
##[error]Version 2.7.7 with arch x64 not found
Available versions:
2.7.16 (x64)
3.5.7 (x64)
3.6.9 (x64)
3.7.4 (x64)
##[error]Node run failed with exit code 1
So I have to add script to install it manually:
https://github.com/SerVB/TheRecentStatOfYou/blob/cc20ecf4e2f530feb219a9e28dfd7aea847ea6a6/.github/workflows/build.yml#L9-L21
Can you implement executing these lines if the version not in [2.7.16, 3.5.7, 3.6.9, 3.7.4]? My script will be much smaller!
My project requires Python 2.7.7 because it has to be compatible with a game that uses this version. It will be cool if the
setup-pythonsupports old versions. Now it doesn't:So I have to add script to install it manually:
https://github.com/SerVB/TheRecentStatOfYou/blob/cc20ecf4e2f530feb219a9e28dfd7aea847ea6a6/.github/workflows/build.yml#L9-L21
Can you implement executing these lines if the version not in [2.7.16, 3.5.7, 3.6.9, 3.7.4]? My script will be much smaller!