Skip to content
This repository has been archived by the owner on Apr 17, 2024. It is now read-only.

Commit

Permalink
Enable building binary wheels for Python 3.9.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 378982897
(cherry picked from commit 22aac71)
  • Loading branch information
chuckx committed Jul 9, 2021
1 parent 2018c23 commit 60ef5a8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
3 changes: 1 addition & 2 deletions python/tools/distribution/build_linux_binary_wheels.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,7 @@ set -euo pipefail
declare -A PYTHON_VERSIONS
PYTHON_VERSIONS["3.7"]="cp37-cp37m"
PYTHON_VERSIONS["3.8"]="cp38-cp38"
# TODO(ckl): Enable when macOS solution is in place.
#PYTHON_VERSIONS["3.9"]="cp39-cp39"
PYTHON_VERSIONS["3.9"]="cp39-cp39"
readonly -A PYTHON_VERSIONS

readonly BAZEL_VERSION='3.7.2'
Expand Down
3 changes: 1 addition & 2 deletions python/tools/distribution/create_release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@ set -euo pipefail
declare -a PYTHON_VERSIONS=
PYTHON_VERSIONS+=("3.7")
PYTHON_VERSIONS+=("3.8")
# TODO(ckl): Enable when macOS solution is in place.
#PYTHON_VERSIONS+=("3.9")
PYTHON_VERSIONS+=("3.9")
readonly PYTHON_VERSIONS

readonly PLATFORM="$(uname | tr '[:upper:]' '[:lower:]')"
Expand Down
3 changes: 1 addition & 2 deletions python/tools/distribution/test_linux_binary_wheels.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@ set -euo pipefail
declare -A PYTHON_VERSIONS
PYTHON_VERSIONS["3.7"]="cp37-cp37m"
PYTHON_VERSIONS["3.8"]="cp38-cp38"
# TODO(ckl): Enable when macOS solution is in place.
#PYTHON_VERSIONS["3.9"]="cp39-cp39"
PYTHON_VERSIONS["3.9"]="cp39-cp39"
readonly -A PYTHON_VERSIONS

export TINK_SRC_PATH="/tmp/tink"
Expand Down

0 comments on commit 60ef5a8

Please sign in to comment.