Skip to content

Instantly share code, notes, and snippets.

@aspiers
Created May 17, 2018 11:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aspiers/0c54ec5b9278663823cc16e50af905c2 to your computer and use it in GitHub Desktop.
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?
#!/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