Skip to content

Commit

Permalink
Merge pull request #189 from sol-eng/tn-limit-python-versions
Browse files Browse the repository at this point in the history
Disable installing 3.12.0 due to JupyterLab WB incompatibility
  • Loading branch information
tnederlof authored Feb 2, 2024
2 parents 010872d + 37c37b8 commit ac388f4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions internal/languages/python.go
Original file line number Diff line number Diff line change
Expand Up @@ -502,10 +502,11 @@ func unavailablePythonVersionsByOS(osType config.OperatingSystem) unavailablePyt
switch osType {
case config.Redhat7:
pythonVersions.NewestPythonVersions = []string{"3.10.0", "3.11.0", "3.8.16", "3.9.15"}
return pythonVersions
case config.Redhat9:
pythonVersions.SpecificPythonVersions = []string{"3.7.3", "3.7.4", "3.7.5"}
return pythonVersions
}
// global
pythonVersions.NewestPythonVersions = []string{"3.12.0"}

return pythonVersions
}

0 comments on commit ac388f4

Please sign in to comment.