Skip to content

Commit

Permalink
Fix REQUIRED_PYTHON in setup.py (#8292)
Browse files Browse the repository at this point in the history
Just a left-over from #8288 to sync the "Unsupported Python version" message with `python_requires`.
  • Loading branch information
sk1p committed Dec 13, 2021
1 parent 773f479 commit ba25869
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from setuptools import find_packages, setup

CURRENT_PYTHON = sys.version_info[:2]
REQUIRED_PYTHON = (3, 5)
REQUIRED_PYTHON = (3, 6)

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

0 comments on commit ba25869

Please sign in to comment.