Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add Python 3.12 support in install selector #539

Merged
merged 5 commits into from
Sep 18, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Apply suggestions from code review
Co-authored-by: Bradley Dice <[email protected]>
  • Loading branch information
jameslamb and bdice authored Sep 17, 2024
commit 50fc7a2f81b3a232d0838b0968fa6b6742021b0e
2 changes: 1 addition & 1 deletion _includes/selector.html
Original file line number Diff line number Diff line change
Expand Up @@ -748,7 +748,7 @@
*/
var supported_python_versions = this.getSupportedPythonVersions()
if (!supported_python_versions.includes(this.active_python_ver)) {
this.active_python_ver = supported_python_versions[0];
this.active_python_ver = supported_python_versions[supported_python_versions.length - 1];
}
},
imgTypeClickHandler(e, type) {
Expand Down