mirror of
https://github.com/saymrwulf/pytorch.git
synced 2026-05-14 20:57:59 +00:00
[ci, 3.13] update tensorboard version for 3.13 to fix broken tests (#141572)
Pull Request resolved: https://github.com/pytorch/pytorch/pull/141572 Approved by: https://github.com/StrongerXi, https://github.com/atalman ghstack dependencies: #141409, #142003
This commit is contained in:
parent
c93dd531d3
commit
9459952175
4 changed files with 14 additions and 2 deletions
|
|
@ -301,7 +301,8 @@ z3-solver==4.12.2.0
|
|||
#Pinned versions:
|
||||
#test that import:
|
||||
|
||||
tensorboard==2.13.0
|
||||
tensorboard==2.13.0 ; python_version < "3.13"
|
||||
tensorboard==2.18.0 ; python_version >= "3.13"
|
||||
#Description: Also included in .ci/docker/requirements-docs.txt
|
||||
#Pinned versions:
|
||||
#test that import: test_tensorboard
|
||||
|
|
|
|||
|
|
@ -14,7 +14,8 @@ matplotlib==3.5.3
|
|||
#Description: This is used to generate PyTorch docs
|
||||
#Pinned versions: 3.5.3
|
||||
|
||||
tensorboard==2.13.0
|
||||
tensorboard==2.13.0 ; python_version < "3.13"
|
||||
tensorboard==2.18.0 ; python_version >= "3.13"
|
||||
#Description: This is used to generate PyTorch docs
|
||||
#Pinned versions: 2.13.0
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,9 @@
|
|||
# Owner(s): ["oncall: r2p"]
|
||||
|
||||
import sys
|
||||
import tempfile
|
||||
import time
|
||||
import unittest
|
||||
|
||||
from datetime import datetime, timedelta
|
||||
|
||||
|
|
@ -129,6 +131,10 @@ class TestMonitorTensorboard(TestCase):
|
|||
for temp_dir in self.temp_dirs:
|
||||
temp_dir.cleanup()
|
||||
|
||||
@unittest.skipIf(
|
||||
sys.version_info >= (3, 13),
|
||||
"numpy failure, likely caused by old tensorboard version",
|
||||
)
|
||||
def test_event_handler(self):
|
||||
with self.create_summary_writer() as w:
|
||||
handle = register_event_handler(TensorboardEventHandler(w))
|
||||
|
|
|
|||
|
|
@ -250,6 +250,10 @@ recall = [1.0, 0.8533334, 0.28, 0.0666667, 0.0]
|
|||
|
||||
|
||||
class TestTensorBoardWriter(BaseTestCase):
|
||||
@unittest.skipIf(
|
||||
sys.version_info >= (3, 13),
|
||||
"numpy failure, likely caused by old tensorboard version",
|
||||
)
|
||||
def test_writer(self):
|
||||
with self.createSummaryWriter() as writer:
|
||||
sample_rate = 44100
|
||||
|
|
|
|||
Loading…
Reference in a new issue