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 1eb2779 commit 7e33abaCopy full SHA for 7e33aba
setup.py
@@ -192,12 +192,8 @@ def find_cmake():
192
return ""
193
194
195
-if sys.version_info[0] < 3:
196
- with open(os.path.join(BASE_PATH, 'README.rst'), 'U') as f:
197
- long_description = f.read()
198
-else:
199
- with open(os.path.join(BASE_PATH, 'README.rst')) as f:
200
+with open(os.path.join(BASE_PATH, 'README.rst')) as f:
+ long_description = f.read()
201
202
distmeta = open(PYCP('distmeta.h')).read().strip().splitlines()
203
distmeta = [item.split('\"')[1] for item in distmeta]
0 commit comments