From 830726782779165e645e0ba205ee70e6ffb6818b Mon Sep 17 00:00:00 2001 From: calebsyring Date: Wed, 27 Mar 2024 12:03:52 -0400 Subject: [PATCH] TMP Test broken build --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index ca733e5..08ddaa0 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ # We are intending to keep up to date with the supported Django versions. # For the official support, please visit: # https://docs.djangoproject.com/en/dev/faq/install/#what-python-version-can-i-use-with-django -if (py_minor_version := sys.version_info.minor) in [8, 9, 10, 11]: +if py_minor_version := sys.version_info[1] in [8, 9, 10, 11]: django_python_version_install = ( f"Django>=4.0,<{'6' if py_minor_version >= 10 else '5'}" )