8000 Fix `REQUIRED_PYTHON` in setup.py (#8292) · encode/django-rest-framework@ba25869 · GitHub
[go: up one dir, main page]

Skip to content

Commit ba25869

Browse files
authored
Fix REQUIRED_PYTHON in setup.py (#8292)
Just a left-over from #8288 to sync the "Unsupported Python version" message with `python_requires`.
1 parent 773f479 commit ba25869

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from setuptools import find_packages, setup
99

1010
CURRENT_PYTHON = sys.version_info[:2]
11-
REQUIRED_PYTHON = (3, 5)
11+
REQUIRED_PYTHON = (3, 6)
1212

1313
# This check and everything above must remain compatible with Python 2.7.
1414
if CURRENT_PYTHON < REQUIRED_PYTHON:

0 commit comments

Comments
 (0)
0