We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When trying to run conda build --python=36 meta.yaml (file here) it throws:
conda build --python=36 meta.yaml
(...) raise ImportError ImportError During handling of the above exception, another exception occurred: Traceback (most recent call last): File "setup.py", line 2, in <module> use_setuptools() (...) raise HTTPError(req.full_url, code, msg, hdrs, fp) urllib.error.HTTPError: HTTP Error 403: SSL is required (...)
I think it relates to this issue. While we wait for the fix, maybe we can do something like this (from UrbanAcces setup.py):
try: import setuptools except ImportError: from ez_setup import use_setuptools use_setuptools() from setuptools import setup, find_packages
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When trying to run
conda build --python=36 meta.yaml
(file here) it throws:I think it relates to this issue.
While we wait for the fix, maybe we can do something like this (from UrbanAcces setup.py):
The text was updated successfully, but these errors were encountered: