no longer eat editables, as pipenv does it for us now

Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
This commit is contained in:
2017-09-23 19:47:26 -04:00
parent 530e3b57bc
commit 91fe86a3f1
4 changed files with 3 additions and 6 deletions
+2
View File
@@ -1,3 +1,5 @@
7.7.5:
- No longer eat editables, as pip-tools does it for us now.
7.7.4:
- Install VCS deps into the virtualenv's src directory, not into the current directory.
7.7.3:
+1 -1
View File
@@ -3,4 +3,4 @@
# //___/ / / / //___/ / // // / / || / /
# // / / // ((____ // / / ||/ /
__version__ = '7.7.4'
__version__ = '7.7.5'
-3
View File
@@ -24,9 +24,6 @@ PIPENV_PIPFILE = os.environ.get('PIPENV_PIPFILE')
# Tells Pipenv which Python to default to, when none is provided.
PIPENV_DEFAULT_PYTHON_VERSION = os.environ.get('PIPENV_DEFAULT_PYTHON_VERSION')
# Tells Pipenv to not try to install -e dependencies to get their dependency information.
PIPENV_DONT_EAT_EDITABLES = bool(os.environ.get('PIPENV_DONT_EAT_EDITABLES'))
# Tells Pipenv to not load .env files.
PIPENV_DONT_LOAD_ENV = bool(os.environ.get('PIPENV_DONT_LOAD_ENV'))
-2
View File
@@ -27,8 +27,6 @@ from piptools.exceptions import NoCandidateFound
from pip.exceptions import DistributionNotFound
from requests.exceptions import HTTPError
from .environments import PIPENV_DONT_EAT_EDITABLES
from .pep508checker import lookup
specifiers = [k for k in lookup.keys()]