Skip to content

Add 'official' support for python 3.13 #7019

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

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
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: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ jobs:
fail-fast: false
matrix:
tf_version_id: ['tf', 'notf']
python_version: ['3.9']
# Lower and upper bounds of python versions we intend to support.
python_version: ['3.9', '3.13']
steps:
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
- uses: actions/setup-python@13ae5bb136fac2878aff31522b9efb785519f984 # v4.3.0
Expand Down
7 changes: 5 additions & 2 deletions tensorboard/pip_package/requirements_dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,11 @@
grpcio-testing==1.24.3
pandas~=2.0
# For gfile S3 test
boto3==1.9.86
moto==1.3.7
# Python >= 3.13 requires a version after
# https://github.com/boto/botocore/pull/2794
# (Both versions picked somewhat arbitrarily after that date)
boto3==1.33.13
moto==4.1.9
# For gfile fsspec test
fsspec>=2021.06.0

Expand Down
2 changes: 2 additions & 0 deletions tensorboard/pip_package/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,8 @@ def get_readme():
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development :: Libraries :: Python Modules",
Expand Down