Skip to content

Commit 29269a3

Browse files
sk1psigvef
authored andcommitted
Fix REQUIRED_PYTHON in setup.py (encode#8292)
Just a left-over from encode#8288 to sync the "Unsupported Python version" message with `python_requires`.
1 parent f4adea1 commit 29269a3

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)