10000 [Not to be merged] Update to compile and run test_torch with 3.13t by albanD · Pull Request #130689 · pytorch/pytorch · GitHub
[go: up one dir, main page]

Skip to content

[Not to be merged] Update to compile and run test_torch with 3.13t #130689

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

Closed
wants to merge 9 commits into from
Closed
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
Prev Previous commit
Next Next commit
Remove test dependencies not supported in 3.13
  • Loading branch information
albanD committed Sep 21, 2024
commit df98ed55e8f9e4ce4a6b826f6b767e403fd3c1ea
13 changes: 7 additions & 6 deletions .ci/docker/requirements-ci.txt
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ optree==0.12.1
#test_pointwise_ops.py, test_dtensor_ops.py, test_torchinductor.py, test_fx.py,
#test_fake_tensor.py, test_mps.py

pillow==10.3.0
pillow==10.3.0 ; python_version <= "3.12"
#Description: Python Imaging Library fork
#Pinned versions: 10.3.0
#test that import:
Expand Down Expand Up @@ -223,7 +223,7 @@ pygments==2.15.0
#test that import:

scikit-image==0.19.3 ; python_version < "3.10"
scikit-image==0.22.0 ; python_version >= "3.10"
scikit-image==0.20.0 ; python_version >= "3.10" and python_version <= "3.12"
#Description: image processing routines
#Pinned versions:
#test that import: test_nn.py
Expand All @@ -247,7 +247,7 @@ scipy==1.12.0 ; python_version == "3.12"
#Pinned versions:
#test that import:

tb-nightly==2.13.0a20230426
tb-nightly==2.13.0a20230426 ; python_version <= "3.12"
#Description: TensorBoard
#Pinned versions:
#test that import:
Expand Down Expand Up @@ -303,19 +303,20 @@ z3-solver==4.12.2.0
#Pinned versions:
#test that import:

tensorboard==2.13.0
tensorboard==2.13.0 ; python_version <= "3.12"
#Description: Also included in .ci/docker/requirements-docs.txt
#Pinned versions:
#test that import: test_tensorboard

pywavelets==1.4.1 ; python_version < "3.12"
pywavelets==1.5.0 ; python_version >= "3.12"
pywavelets==1.5.0 ; python_version == "3.12"
#Description: This is a requirement of scikit-image, we need to pin
# it here because 1.5.0 conflicts with numpy 1.21.2 used in CI
#Pinned versions: 1.4.1
#test that import:

lxml==5.0.0
lxml==5.0.0 ; python_version <= "3.12"
lxml==5.2.2 ; python_version == "3.13"
#Description: This is a requirement of unittest-xml-reporting

# Python-3.9 binaries
Expand Down
0