From 4cdcd41496975e168a8ae4efa5fc98b2598a84fb Mon Sep 17 00:00:00 2001 From: Vasilis Vryniotis Date: Tue, 8 Nov 2022 09:22:13 +0000 Subject: [PATCH] Update minimum version to 3.7.2 --- README.rst | 4 ++-- setup.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index c7f11d9c64d..dec9deac7cd 100644 --- a/README.rst +++ b/README.rst @@ -21,9 +21,9 @@ supported Python versions. +--------------------------+--------------------------+---------------------------------+ | ``torch`` | ``torchvision`` | ``python`` | +==========================+==========================+=================================+ -| ``main`` / ``nightly`` | ``main`` / ``nightly`` | ``>=3.7``, ``<=3.10`` | +| ``main`` / ``nightly`` | ``main`` / ``nightly`` | ``>=3.7.2``, ``<=3.10`` | +--------------------------+--------------------------+---------------------------------+ -| ``1.13.0`` | ``0.14.0`` | ``>=3.7``, ``<=3.10`` | +| ``1.13.0`` | ``0.14.0`` | ``>=3.7.2``, ``<=3.10`` | +--------------------------+--------------------------+---------------------------------+ | ``1.12.0`` | ``0.13.0`` | ``>=3.7``, ``<=3.10`` | +--------------------------+--------------------------+---------------------------------+ diff --git a/setup.py b/setup.py index 25bef6b50de..93ca4151d19 100644 --- a/setup.py +++ b/setup.py @@ -546,7 +546,7 @@ def run(self): "scipy": ["scipy"], }, ext_modules=get_extensions(), - python_requires=">=3.7", + python_requires=">=3.7.2", cmdclass={ "build_ext": BuildExtension.with_options(no_python_abi_suffix=True), "clean": clean,