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.13 release candidate 1 #522

Merged
merged 1 commit into from
Aug 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
3 changes: 3 additions & 0 deletions osx_utils.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ LATEST_3p9=3.9.13
LATEST_3p10=3.10.11
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe a different PR, but it would be nice to sync the 3.8 - 3.12 versions with the python versions in the manybuild docker images.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also noticed that, let's do that in a separate PR.

I can open a new PR immediately after this one is merged.

LATEST_3p11=3.11.6
LATEST_3p12=3.12.0
LATEST_3p13=3.13.0rc1


function check_python {
Expand Down Expand Up @@ -80,6 +81,8 @@ function fill_pyver {
echo $LATEST_2p7
elif [ $ver == 3 ] || [ $ver == "3.12" ]; then
echo $LATEST_3p12
elif [ $ver == "3.13" ]; then
echo $LATEST_3p13
elif [ $ver == "3.11" ]; then
echo $LATEST_3p11
elif [ $ver == "3.10" ]; then
Expand Down
2 changes: 2 additions & 0 deletions tests/test_fill_pyver.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
[ "$(fill_pyver 2.7)" == $LATEST_2p7 ] || ingest
[ "$(fill_pyver 2.7.8)" == "2.7.8" ] || ingest
[ "$(fill_pyver 3)" == $LATEST_3p12 ] || ingest
[ "$(fill_pyver 3.13)" == $LATEST_3p13 ] || ingest
[ "$(fill_pyver 3.13.0)" == "3.13.0" ] || ingest
[ "$(fill_pyver 3.12)" == $LATEST_3p12 ] || ingest
[ "$(fill_pyver 3.12.0)" == "3.12.0" ] || ingest
[ "$(fill_pyver 3.11)" == $LATEST_3p11 ] || ingest
Expand Down
Loading