Created
May 17, 2018 11:16
-
-
Save aspiers/0c54ec5b9278663823cc16e50af905c2 to your computer and use it in GitHub Desktop.
Why oh why does `pip --no-cache-dir install -vvv .` fail on this?
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
import sys | |
from setuptools import setup | |
def setup_package(): | |
# This only works if relaxed to 2.5.6! Despite all versions up to | |
# 2.5.11 being clearly present at https://pypi.org/simple/pyscaffold/ | |
setup(setup_requires=['pyscaffold>=2.5.10']) | |
if __name__ == "__main__": | |
setup_package() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment