Skip to content

Commit

Permalink
setup.py: Update runtime error to correct minimal Python version (#2699)
Browse files Browse the repository at this point in the history
Small nitpick after #2396: Also update the runtime error to list Python 3.7 as minimal version
  • Loading branch information
EwoutH authored Nov 26, 2021
1 parent b13dfdb commit 3765be2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@
from setuptools import setup

import sys
if sys.version_info[:2] < (3, 6):
raise RuntimeError("seaborn requires python >= 3.6.")
if sys.version_info[:2] < (3, 7):
raise RuntimeError("seaborn requires python >= 3.7.")

setup(
name=DISTNAME,
Expand Down

0 comments on commit 3765be2

Please sign in to comment.