Created
June 4, 2018 16:52
-
-
Save jaraco/d42673e034bdfb08a1337a264b3c5c6f to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| setuptools master $ git diff | |
| diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py | |
| index 05508ceb..108308ab 100755 | |
| --- a/setuptools/command/easy_install.py | |
| +++ b/setuptools/command/easy_install.py | |
| @@ -408,6 +408,7 @@ class easy_install(Command): | |
| self._expand_attrs(dirs) | |
| def run(self): | |
| + raise RuntimeError() | |
| if self.verbose != self.distribution.verbose: | |
| log.set_verbosity(self.verbose) | |
| try: | |
| setuptools master $ pip install -e . | |
| Obtaining file:///Users/jaraco/Dropbox/code/main/setuptools | |
| Installing build dependencies ... done | |
| Installing collected packages: setuptools | |
| Found existing installation: setuptools 38.5.2 | |
| Uninstalling setuptools-38.5.2: | |
| Successfully uninstalled setuptools-38.5.2 | |
| Running setup.py develop for setuptools | |
| Successfully installed setuptools | |
| setuptools master $ pip download --no-binary :all: --no-deps rwt | |
| Collecting rwt | |
| Using cached https://files.pythonhosted.org/packages/b7/e5/ceb260df4071e82179e6514882f60e46d8ff156b5e126cb1e24897fd451e/rwt-4.0.tar.gz | |
| Saved ./rwt-4.0.tar.gz | |
| Installing build dependencies ... done | |
| Successfully downloaded rwt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment