mirror of
https://github.com/zebrajr/pytorch.git
synced 2025-12-06 12:20:52 +01:00
Update sympy version constraint to 1.13.3 (#138338)
`simpy` was pinned to version 1.13.1 due to test failures with version 1.13.2 on Windows and mac, as reported in https://github.com/pytorch/pytorch/pull/133235. Now that a newer version, 1.13.3, has been released, this PR aims to verify if the test failure has been resolved and also allow building with newer versions for packaging purposes (e.g., https://github.com/conda-forge/pytorch-cpu-feedstock/pull/277#discussion_r1806721862). Pull Request resolved: https://github.com/pytorch/pytorch/pull/138338 Approved by: https://github.com/Skylion007, https://github.com/malfet Co-authored-by: Nikita Shulga <2453524+malfet@users.noreply.github.com>
This commit is contained in:
parent
14a3e12985
commit
d8279ad9d1
|
|
@ -326,7 +326,7 @@ lxml==5.0.0
|
||||||
|
|
||||||
PyGithub==2.3.0
|
PyGithub==2.3.0
|
||||||
|
|
||||||
sympy==1.13.1 ; python_version >= "3.9"
|
sympy==1.13.3 ; python_version >= "3.9"
|
||||||
#Description: Required by coremltools, also pinned in .github/requirements/pip-requirements-macOS.txt
|
#Description: Required by coremltools, also pinned in .github/requirements/pip-requirements-macOS.txt
|
||||||
#Pinned versions:
|
#Pinned versions:
|
||||||
#test that import:
|
#test that import:
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,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.1 ; python_version >= "3.9"
|
sympy==1.13.3 ; 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
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,7 @@ requests
|
||||||
setuptools<=72.1.0
|
setuptools<=72.1.0
|
||||||
types-dataclasses
|
types-dataclasses
|
||||||
typing-extensions>=4.8.0
|
typing-extensions>=4.8.0
|
||||||
sympy==1.13.1 ; python_version >= "3.9"
|
sympy>=1.13.1,!=1.13.2 ; python_version >= "3.9"
|
||||||
filelock
|
filelock
|
||||||
networkx
|
networkx
|
||||||
jinja2
|
jinja2
|
||||||
|
|
|
||||||
2
setup.py
2
setup.py
|
|
@ -1161,7 +1161,7 @@ def main():
|
||||||
"filelock",
|
"filelock",
|
||||||
"typing-extensions>=4.8.0",
|
"typing-extensions>=4.8.0",
|
||||||
'setuptools ; python_version >= "3.12"',
|
'setuptools ; python_version >= "3.12"',
|
||||||
'sympy==1.13.1 ; python_version >= "3.9"',
|
'sympy>=1.13.3 ; python_version >= "3.9"',
|
||||||
"networkx",
|
"networkx",
|
||||||
"jinja2",
|
"jinja2",
|
||||||
"fsspec",
|
"fsspec",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user