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 d27ad85 commit 863787eCopy full SHA for 863787e
packages/basemap/setup.py
@@ -151,6 +151,10 @@ def run(self):
151
item.replace(marker1, "").replace(marker2, "") for item in install_requires
152
if item.endswith(marker1) or item.endswith(marker2)
153
or "python_version" not in item]
154
+else:
155
+ marker1 = '; python_version == "3.2"'
156
+ setup_requires = [item for item in setup_requires if not item.endswith(marker1)]
157
+ install_requires = [item for item in install_requires if not item.endswith(marker1)]
158
159
setup(**{
160
"name":
0 commit comments