Skip to content

WIP - do not review; Support python 3.12 #9274

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

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
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
2 changes: 1 addition & 1 deletion infra/tpu-pytorch-releases/artifacts.auto.tfvars
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#### Historical builds for releases before r2.7
#### Historical builds for releases before r2.7.
manual_nightly_builds = [
]

Expand Down
2 changes: 1 addition & 1 deletion infra/tpu-pytorch-releases/artifacts_builds.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
########## Begin section for release and nightly ########
# Define common configuration parameters for 2.7 release and nightly
locals {
tpu_python_versions = ["3.9", "3.10", "3.11"]
tpu_python_versions = ["3.9", "3.10", "3.11", "3.12"]
release_git_tag = "v2.7.0-rc5"
release_package_version = "2.7.0-rc5"
release_pytorch_git_rev = "v2.7.0-rc10"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ def _get_jax_install_requirements():
# Install nightly JAX libraries from the JAX package registries.
jax = f'jax @ https://storage.googleapis.com/jax-releases/nightly/jax/jax-{_jax_version}-py3-none-any.whl'
jaxlib = []
for python_minor_version in [9, 10, 11]:
for python_minor_version in [9, 10, 11, 12]:
jaxlib.append(
f'jaxlib @ https://storage.googleapis.com/jax-releases/nightly/nocuda/jaxlib-{_jaxlib_version}-cp3{python_minor_version}-cp3{python_minor_version}-manylinux2014_x86_64.whl ; python_version == "3.{python_minor_version}"'
)
Expand Down
Loading