Skip to content
Closed
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 tensorboard/pip_package/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ pillow
# 4.24.0 had an issue that broke our tests, so we should avoid that release:
# https://github.com/protocolbuffers/protobuf/issues/13485
protobuf >= 3.19.6, != 4.24.0
setuptools >= 41.0.0 # Note: provides pkg_resources as well as setuptools
setuptools >= 41.0.0
six >= 1.16.0
tensorboard-data-server >= 0.7.0, < 0.8.0
werkzeug >= 1.0.1
8 changes: 5 additions & 3 deletions tensorboard/pip_package/requirements_dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,13 @@
# Dependencies of TensorBoard used only for testing or development.

# For tests
grpcio-testing==1.24.3
grpcio-testing>=1.48.2
pandas~=2.0

# For gfile S3 test
boto3==1.9.86
moto==1.3.7
boto3 >= 1.28
moto[s3] >= 4.2

# For gfile fsspec test
fsspec>=2021.06.0

Expand Down
2 changes: 1 addition & 1 deletion tensorboard/pip_package/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def get_readme():
},
install_requires=REQUIRED_PACKAGES,
tests_require=REQUIRED_PACKAGES,
python_requires=">=3.9",
python_requires=">=3.10",
# PyPI package information.
classifiers=[
"Development Status :: 4 - Beta",
Expand Down