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 29aebba commit b4a4c17Copy full SHA for b4a4c17
setup.py
@@ -8,7 +8,9 @@
8
from setuptools import setup, Extension
9
10
if sys.version_info < (3, 6):
11
- raise RuntimeError('The C API from Python 3.6+ is required.')
+ raise RuntimeError(
12
+ 'The C API from Python 3.6+ is required, found %s' % sys.version_info
13
+ )
14
15
from configparser import ConfigParser
16
0 commit comments