[Code Clean] Remove support of python3.9 (#163846)

As the title stated.
Pull Request resolved: https://github.com/pytorch/pytorch/pull/163846
Approved by: https://github.com/ezyang
This commit is contained in:
FFFrog
2025-09-26 16:32:39 +08:00
committed by PyTorch MergeBot
parent 53f5af8c92
commit bc1690c7e8
2 changed files with 1 additions and 9 deletions

View File

@ -10,11 +10,6 @@ BAD_SSL = "https://self-signed.badssl.com"
print("Testing SSL certificate checking for Python:", sys.version)
if sys.version_info[:2] < (2, 7) or sys.version_info[:2] < (3, 4):
print("This version never checks SSL certs; skipping tests")
sys.exit(0)
EXC = OSError
print(f"Connecting to {GOOD_SSL} should work")