We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13ee932 commit dabc706Copy full SHA for dabc706
setup.py
@@ -13,11 +13,13 @@
13
if sys.version_info < min_version:
14
error = """
15
Beginning with Matplotlib 3.1, Python {0} or above is required.
16
+You are using Python {1}.
17
18
This may be due to an out of date pip.
19
20
Make sure you have pip >= 9.0.1.
-""".format('.'.join(str(n) for n in min_version))
21
+""".format('.'.join(str(n) for n in min_version),
22
+ '.'.join(str(n) for n in sys.version_info[:3]))
23
sys.exit(error)
24
25
from pathlib import Path
0 commit comments