From 9f10049a82744f16d82be9a5291df04c609bec70 Mon Sep 17 00:00:00 2001 From: Taneli Hukkinen Date: Mon, 1 Feb 2021 01:27:29 +0100 Subject: [PATCH] Fix `python_requires` metadata to require >=3.6.1 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index e6b72c4461..96c735324e 100644 --- a/setup.py +++ b/setup.py @@ -124,7 +124,7 @@ def extra(self): license='MIT', packages=['pydantic'], package_data={'pydantic': ['py.typed']}, - python_requires='>=3.6', + python_requires='>=3.6.1', zip_safe=False, # https://mypy.readthedocs.io/en/latest/installed_packages.html install_requires=[ 'dataclasses>=0.6;python_version<"3.7"'