Skip to content

Commit 15866fe

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

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)