Skip to content

Commit

Permalink
Update Python 3.8, 3.9, 3.10 and 3.11 to current stable versions (closes
Browse files Browse the repository at this point in the history
  • Loading branch information
mhsmith committed Nov 27, 2023
1 parent a1c6399 commit 6ce9546
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ public class Common {
public static final Map<String, String> PYTHON_VERSIONS = new LinkedHashMap<>();
static {
// Version, build number
PYTHON_VERSIONS.put("3.8.16", "0");
PYTHON_VERSIONS.put("3.9.13", "1");
PYTHON_VERSIONS.put("3.10.6", "1");
PYTHON_VERSIONS.put("3.11.0", "2");
PYTHON_VERSIONS.put("3.8.18", "0");
PYTHON_VERSIONS.put("3.9.18", "0");
PYTHON_VERSIONS.put("3.10.13", "0");
PYTHON_VERSIONS.put("3.11.6", "0");
PYTHON_VERSIONS.put("3.12.0", "1");
}

Expand Down
2 changes: 1 addition & 1 deletion target/unpackage-target.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ for zip_path in $target_dir/*.zip; do
zip_basename=$(basename $zip_path)
abi_regex="^target-$version-(.+).zip$"
if ! echo "$zip_basename" | grep -qE "$abi_regex"; then
echo "$zip_basename does not match $abi_regex"
echo "$zip_path does not match $abi_regex"
exit 1
fi
abi=$(echo "$zip_basename" | sed -E "s/$abi_regex/\1/")
Expand Down

0 comments on commit 6ce9546

Please sign in to comment.