Remove CI/CD python 3.8 requirements (#137893)

Python 3.8 is deprecated from CI/CD. No reason have these pins
Pull Request resolved: https://github.com/pytorch/pytorch/pull/137893
Approved by: https://github.com/Skylion007, https://github.com/huydhn, https://github.com/albanD, https://github.com/kit1980
This commit is contained in:
atalman
2024-10-14 20:28:46 +00:00
committed by PyTorch MergeBot
parent 3b7710316c
commit 6016b8a9be
4 changed files with 0 additions and 5 deletions

View File

@ -322,7 +322,6 @@ lxml==5.0.0
PyGithub==2.3.0 PyGithub==2.3.0
sympy==1.12.1 ; python_version == "3.8"
sympy==1.13.1 ; python_version >= "3.9" sympy==1.13.1 ; 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:

View File

@ -136,11 +136,9 @@ init_command = [
'python3', 'python3',
'tools/linter/adapters/pip_init.py', 'tools/linter/adapters/pip_init.py',
'--dry-run={{DRYRUN}}', '--dry-run={{DRYRUN}}',
'numpy==1.24.3 ; python_version == "3.8"',
'numpy==1.26.0 ; python_version >= "3.9"', 'numpy==1.26.0 ; python_version >= "3.9"',
'expecttest==0.2.1', 'expecttest==0.2.1',
'mypy==1.11.2', 'mypy==1.11.2',
'sympy==1.12.1 ; python_version == "3.8"',
'sympy==1.13.0 ; python_version >= "3.9"', 'sympy==1.13.0 ; python_version >= "3.9"',
'types-requests==2.27.25', 'types-requests==2.27.25',
'types-PyYAML==6.0.7', 'types-PyYAML==6.0.7',

View File

@ -12,7 +12,6 @@ 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.12.1 ; python_version == "3.8"
sympy==1.13.1 ; python_version >= "3.9" sympy==1.13.1 ; python_version >= "3.9"
filelock filelock
networkx networkx

View File

@ -1143,7 +1143,6 @@ 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.12.1 ; python_version == "3.8"',
'sympy==1.13.1 ; python_version >= "3.9"', 'sympy==1.13.1 ; python_version >= "3.9"',
"networkx", "networkx",
"jinja2", "jinja2",