mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-20 21:14:14 +08:00
Pin sympy to 1.13.1 (#133235)
Sympy 1.13.2 release yesterday, and it results in test failures on windows and mac
454713fe9d/1
Hopefully these are the places it needs to get pinned
Pull Request resolved: https://github.com/pytorch/pytorch/pull/133235
Approved by: https://github.com/atalman, https://github.com/ZainRizvi
This commit is contained in:
committed by
PyTorch MergeBot
parent
36c4ed8e49
commit
4f0d5f6551
@ -312,3 +312,9 @@ lxml==5.0.0
|
|||||||
# Python-3.9 binaries
|
# Python-3.9 binaries
|
||||||
|
|
||||||
PyGithub==2.3.0
|
PyGithub==2.3.0
|
||||||
|
|
||||||
|
sympy==1.12.1 ; python_version == "3.8"
|
||||||
|
sympy==1.13.1 ; python_version >= "3.9"
|
||||||
|
#Description: Required by coremltools, also pinned in .github/requirements/pip-requirements-macOS.txt
|
||||||
|
#Pinned versions:
|
||||||
|
#test that import:
|
||||||
|
@ -18,7 +18,7 @@ pytest-rerunfailures==10.3
|
|||||||
pytest-flakefinder==1.1.0
|
pytest-flakefinder==1.1.0
|
||||||
scipy==1.10.1
|
scipy==1.10.1
|
||||||
sympy==1.12.1 ; python_version == "3.8"
|
sympy==1.12.1 ; python_version == "3.8"
|
||||||
sympy>=1.13.0 ; python_version >= "3.9"
|
sympy==1.13.1 ; python_version >= "3.9"
|
||||||
unittest-xml-reporting<=3.2.0,>=2.0.0
|
unittest-xml-reporting<=3.2.0,>=2.0.0
|
||||||
xdoctest==1.1.0
|
xdoctest==1.1.0
|
||||||
filelock==3.6.0
|
filelock==3.6.0
|
||||||
|
@ -10,7 +10,7 @@ setuptools
|
|||||||
types-dataclasses
|
types-dataclasses
|
||||||
typing-extensions>=4.8.0
|
typing-extensions>=4.8.0
|
||||||
sympy==1.12.1 ; python_version == "3.8"
|
sympy==1.12.1 ; python_version == "3.8"
|
||||||
sympy>=1.13.0 ; python_version >= "3.9"
|
sympy==1.13.1 ; python_version >= "3.9"
|
||||||
filelock
|
filelock
|
||||||
networkx
|
networkx
|
||||||
jinja2
|
jinja2
|
||||||
|
2
setup.py
2
setup.py
@ -1138,7 +1138,7 @@ def main():
|
|||||||
"filelock",
|
"filelock",
|
||||||
"typing-extensions>=4.8.0",
|
"typing-extensions>=4.8.0",
|
||||||
'sympy==1.12.1 ; python_version == "3.8"',
|
'sympy==1.12.1 ; python_version == "3.8"',
|
||||||
'sympy>=1.13.0 ; python_version >= "3.9"',
|
'sympy==1.13.1 ; python_version >= "3.9"',
|
||||||
"networkx",
|
"networkx",
|
||||||
"jinja2",
|
"jinja2",
|
||||||
"fsspec",
|
"fsspec",
|
||||||
|
Reference in New Issue
Block a user