mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 22:50:18 +00:00
no longer eat editables, as pipenv does it for us now
Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
This commit is contained in:
@@ -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:
|
||||
|
||||
@@ -3,4 +3,4 @@
|
||||
# //___/ / / / //___/ / // // / / || / /
|
||||
# // / / // ((____ // / / ||/ /
|
||||
|
||||
__version__ = '7.7.4'
|
||||
__version__ = '7.7.5'
|
||||
|
||||
@@ -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'))
|
||||
|
||||
|
||||
@@ -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()]
|
||||
|
||||
Reference in New Issue
Block a user