Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
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 tensorboard/pip_package/build_pip_package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ build() (
# Require wheel for bdist_wheel command, and setuptools 36.2.0+ so that
# env markers are handled (https://github.com/pypa/setuptools/pull/1081)
export PYTHONWARNINGS=ignore:DEPRECATION # suppress Python 2.7 deprecation spam
pip install -qU wheel 'setuptools>=36.2.0'
pip install -qU wheel 'setuptools>=36.2.0, <82.0.0'

# Overrides file timestamps in the zip archive to make the build
# reproducible. (Date is mostly arbitrary, but must be past 1980 to be
Expand Down
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, < 82.0.0 # Note: provides pkg_resources as well as setuptools
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
Loading