Skip to content

Commit

Permalink
Merge pull request #522 from EwoutH/py313
Browse files Browse the repository at this point in the history
Add Python 3.13 release candidate 1
  • Loading branch information
mattip authored Aug 22, 2024
2 parents 88146e7 + 34fa2be commit b5e75d5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
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
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

0 comments on commit b5e75d5

Please sign in to comment.