Changelog History
Page 3
-
v2020.8.13 Changes
August 13, 2020๐ Bug Fixes
- ๐ Fixed behaviour of
pipenv uninstall --all-dev
. From now on it does not uninstall regular packages.#3722 <https://github.com/pypa/pipenv/issues/3722>
_ - ๐ Fix a bug that incorrect Python path will be used when
--system
flag is on.#4315 <https://github.com/pypa/pipenv/issues/4315>
_ - ๐ Fix falsely flagging a Homebrew installed Python as a virtual environment
#4316 <https://github.com/pypa/pipenv/issues/4316>
_ - ๐ Fix a bug that
pipenv uninstall
throws an exception that does not exist.#4321 <https://github.com/pypa/pipenv/issues/4321>
_ - ๐ Fix a bug that Pipenv can't locate the correct file of special directives in
setup.cfg
of an editable package.#4335 <https://github.com/pypa/pipenv/issues/4335>
_ - ๐ Fix a bug that
setup.py
can't be parsed correctly when the assignment is type-annotated.#4342 <https://github.com/pypa/pipenv/issues/4342>
_ - Fix a bug that
pipenv graph
throws an exception that PipenvCmdError(cmd_string, c.out, c.err, return_code).#4388 <https://github.com/pypa/pipenv/issues/4388>
_ - ๐ฆ Do not copy the whole directory tree of local file package.
#4403 <https://github.com/pypa/pipenv/issues/4403>
_ - Correctly detect whether Pipenv in run under an activated virtualenv.
#4412 <https://github.com/pypa/pipenv/issues/4412>
_
Vendored Libraries
- โก๏ธ Update
requirementslib
to1.5.12
.#4385 <https://github.com/pypa/pipenv/issues/4385>
_ - โก๏ธ * Update
requirements
to1.5.13
.- Update
pip-shims
to0.5.3
.#4421 <https://github.com/pypa/pipenv/issues/4421>
_
- Update
- ๐ Fixed behaviour of
-
v2020.6.2 Changes
June 02, 2020๐ Features & Improvements
- Pipenv will now detect existing
venv
andvirtualenv
based virtual environments more robustly.#4276 <https://github.com/pypa/pipenv/issues/4276>
_
๐ Bug Fixes
+
signs in URL authentication fragments will no longer be incorrectly replaced with space () characters.
#4271 <https://github.com/pypa/pipenv/issues/4271>
_- ๐ Fixed a regression which caused Pipenv to fail when running under
/
.#4273 <https://github.com/pypa/pipenv/issues/4273>
_ - ๐
setup.py
files withversion
variables read fromos.environ
are now able to be parsed successfully.#4274 <https://github.com/pypa/pipenv/issues/4274>
_ - ๐ Fixed a bug which caused Pipenv to fail to install packages in a virtual environment if those packages were already present in the system global environment.
#4276 <https://github.com/pypa/pipenv/issues/4276>
_ - ๐ Fix a bug that caused non-specific versions to be pinned in
Pipfile.lock
.#4278 <https://github.com/pypa/pipenv/issues/4278>
_ - ๐ป Corrected a missing exception import and invalid function call invocations in
pipenv.cli.command
.#4286 <https://github.com/pypa/pipenv/issues/4286>
_ - ๐ Fixed an issue with resolving packages with names defined by function calls in
setup.py
.#4292 <https://github.com/pypa/pipenv/issues/4292>
_ - ๐ Fixed a regression with installing the current directory, or
.
, inside avenv
based virtual environment.#4295 <https://github.com/pypa/pipenv/issues/4295>
_ - ๐ Fixed a bug with the discovery of python paths on Windows which could prevent installation of environments during
pipenv install
.#4296 <https://github.com/pypa/pipenv/issues/4296>
_ - ๐ Fixed an issue in the
requirementslib
AST parser which prevented parsing ofsetup.py
files for dependency metadata.#4298 <https://github.com/pypa/pipenv/issues/4298>
_ - ๐ Fix a bug where Pipenv doesn't realize the session is interactive
#4305 <https://github.com/pypa/pipenv/issues/4305>
_
Vendored Libraries
- โก๏ธ Updated requirementslib to version
1.5.11
.#4292 <https://github.com/pypa/pipenv/issues/4292>
_ - โก๏ธ Updated vendored dependencies:
- pythonfinder:
1.2.2
=>1.2.4
- requirementslib:
1.5.9
=>1.5.10
#4302 <https://github.com/pypa/pipenv/issues/4302>
_
- pythonfinder:
- Pipenv will now detect existing
-
v2020.5.28 Changes
May 28, 2020๐ Features & Improvements
- ๐
pipenv install
andpipenv sync
will no longer attempt to install satisfied dependencies during installation.#3057 <https://github.com/pypa/pipenv/issues/3057>
,#3506 <https://github.com/pypa/pipenv/issues/3506>
- โ Added support for resolution of direct-url dependencies in
setup.py
files to respectPEP-508
style URL dependencies.#3148 <https://github.com/pypa/pipenv/issues/3148>
_ โ Added full support for resolution of all dependency types including direct URLs, zip archives, tarballs, etc.
- Improved error handling and formatting.
- Introduced improved cross platform stream wrappers for better
stdout
andstderr
consistency.#3298 <https://github.com/pypa/pipenv/issues/3298>
_
For consistency with other commands and the
--dev
option description,pipenv lock --requirements --dev
now emits both default and development dependencies. The new--dev-only
option requests the previous behaviour (e.g. to generate adev-requirements.txt
file).#3316 <https://github.com/pypa/pipenv/issues/3316>
_๐ Pipenv will now successfully recursively lock VCS sub-dependencies.
#3328 <https://github.com/pypa/pipenv/issues/3328>
_โ Added support for
--verbose
output topipenv run
.#3348 <https://github.com/pypa/pipenv/issues/3348>
_Pipenv will now discover and resolve the intrinsic dependencies of all VCS dependencies, whether they are editable or not, to prevent resolution conflicts.
#3368 <https://github.com/pypa/pipenv/issues/3368>
_Added a new environment variable,
PIPENV_RESOLVE_VCS
, to toggle dependency resolution off for non-editable VCS, file, and URL based dependencies.#3577 <https://github.com/pypa/pipenv/issues/3577>
_Added the ability for Windows users to enable emojis by setting
PIPENV_HIDE_EMOJIS=0
.#3595 <https://github.com/pypa/pipenv/issues/3595>
_Allow overriding PIPENV_INSTALL_TIMEOUT environment variable (in seconds).
#3652 <https://github.com/pypa/pipenv/issues/3652>
_Allow overriding PIP_EXISTS_ACTION evironment variable (value is passed to pip install). Possible values here: https://pip.pypa.io/en/stable/reference/pip/#exists-action-option Useful when you need to
PIP_EXISTS_ACTION=i
(ignore existing packages) - great for CI environments, where you need really fast setup.#3738 <https://github.com/pypa/pipenv/issues/3738>
_Pipenv will no longer forcibly override
PIP_NO_DEPS
on all vcs and file dependencies as resolution happens on these in a pre-lock step.#3763 <https://github.com/pypa/pipenv/issues/3763>
_๐ Improved verbose logging output during
pipenv lock
will now stream output to the console while maintaining a spinner.#3810 <https://github.com/pypa/pipenv/issues/3810>
_Added support for automatic python installs via
asdf
and associatedPIPENV_DONT_USE_ASDF
environment variable.#4018 <https://github.com/pypa/pipenv/issues/4018>
_Pyenv/asdf can now be used whether or not they are available on PATH. Setting PYENV_ROOT/ASDF_DIR in a Pipenv's .env allows Pipenv to install an interpreter without any shell customizations, so long as pyenv/asdf is installed.
#4245 <https://github.com/pypa/pipenv/issues/4245>
_โ Added
--key
command line parameter for including personal PyUp.io API tokens when runningpipenv check
.#4257 <https://github.com/pypa/pipenv/issues/4257>
_
Behavior Changes
- ๐ Make conservative checks of known exceptions when subprocess returns output, so user won't see the whole traceback - just the error.
#2553 <https://github.com/pypa/pipenv/issues/2553>
_ - ๐ Do not touch Pipfile early and rely on it so that one can do
pipenv sync
without a Pipfile.#3386 <https://github.com/pypa/pipenv/issues/3386>
_ - Re-enable
--help
option forpipenv run
command.#3844 <https://github.com/pypa/pipenv/issues/3844>
_ - Make sure
pipenv lock -r --pypi-mirror {MIRROR_URL}
will respect the pypi-mirror in requirements output.#4199 <https://github.com/pypa/pipenv/issues/4199>
_
๐ Bug Fixes
- Raise
PipenvUsageError
when [[source]] does not contain url field.#2373 <https://github.com/pypa/pipenv/issues/2373>
_ - ๐ Fixed a bug which caused editable package resolution to sometimes fail with an unhelpful setuptools-related error message.
#2722 <https://github.com/pypa/pipenv/issues/2722>
_ - ๐ Fixed an issue which caused errors due to reliance on the system utilities
which
andwhere
which may not always exist on some systems.- Fixed a bug which caused periodic failures in python discovery when executables named
python
were not present on the target$PATH
.#2783 <https://github.com/pypa/pipenv/issues/2783>
_
- Fixed a bug which caused periodic failures in python discovery when executables named
- Dependency resolution now writes hashes for local and remote files to the lockfile.
#3053 <https://github.com/pypa/pipenv/issues/3053>
_ - ๐ Fixed a bug which prevented
pipenv graph
from correctly showing all dependencies when running from withinpipenv shell
.#3071 <https://github.com/pypa/pipenv/issues/3071>
_ - ๐ Fixed resolution of direct-url dependencies in
setup.py
files to respectPEP-508
style URL dependencies.#3148 <https://github.com/pypa/pipenv/issues/3148>
_ ๐ Fixed a bug which caused failures in warning reporting when running pipenv inside a virtualenv under some circumstances.
- Fixed a bug with package discovery when running
pipenv clean
.#3298 <https://github.com/pypa/pipenv/issues/3298>
_
- Fixed a bug with package discovery when running
๐ Quote command arguments with carets (
^
) on Windows to work around unintended shell escapes.#3307 <https://github.com/pypa/pipenv/issues/3307>
_๐ Handle alternate names for UTF-8 encoding.
#3313 <https://github.com/pypa/pipenv/issues/3313>
_๐ฆ Abort pipenv before adding the non-exist package to Pipfile.
#3318 <https://github.com/pypa/pipenv/issues/3318>
_๐ฆ Don't normalize the package name user passes in.
#3324 <https://github.com/pypa/pipenv/issues/3324>
_๐ Fix a bug where custom virtualenv can not be activated with pipenv shell
#3339 <https://github.com/pypa/pipenv/issues/3339>
_๐ Fix a bug that
--site-packages
flag is not recognized.#3351 <https://github.com/pypa/pipenv/issues/3351>
_๐ Fix a bug where pipenv --clear is not working
#3353 <https://github.com/pypa/pipenv/issues/3353>
_๐ Fix unhashable type error during
$ pipenv install --selective-upgrade
#3384 <https://github.com/pypa/pipenv/issues/3384>
_Dependencies with direct
PEP508
compliant VCS URLs specified in theirinstall_requires
will now be successfully locked during the resolution process.#3396 <https://github.com/pypa/pipenv/issues/3396>
_๐ Fixed a keyerror which could occur when locking VCS dependencies in some cases.
#3404 <https://github.com/pypa/pipenv/issues/3404>
_๐ Fixed a bug that
ValidationError
is thrown when some fields are missing in source section.#3427 <https://github.com/pypa/pipenv/issues/3427>
_โก๏ธ Updated the index names in lock file when source name in Pipfile is changed.
#3449 <https://github.com/pypa/pipenv/issues/3449>
_๐ Fixed an issue which caused
pipenv install --help
to show duplicate entries for--pre
.#3479 <https://github.com/pypa/pipenv/issues/3479>
_๐ Fix bug causing
[SSL: CERTIFICATE_VERIFY_FAILED]
when Pipfile[[source]]
has verify_ssl=false and url with custom port.#3502 <https://github.com/pypa/pipenv/issues/3502>
_๐ Fix
sync --sequential
ignoringpip install
errors and logs.#3537 <https://github.com/pypa/pipenv/issues/3537>
_Fix the issue that lock file can't be created when
PIPENV_PIPFILE
is not under working directory.#3584 <https://github.com/pypa/pipenv/issues/3584>
_Pipenv will no longer inadvertently set
editable=True
on all vcs dependencies.#3647 <https://github.com/pypa/pipenv/issues/3647>
_๐ The
--keep-outdated
argument topipenv install
andpipenv lock
will now drop specifier constraints when encountering editable dependencies.- In addition,
--keep-outdated
will retain specifiers that would otherwise be dropped from any entries that have not been updated.#3656 <https://github.com/pypa/pipenv/issues/3656>
_
- In addition,
๐ Fixed a bug which sometimes caused pipenv to fail to respect the
--site-packages
flag when passed withpipenv install
.#3718 <https://github.com/pypa/pipenv/issues/3718>
_๐ฆ Normalize the package names to lowercase when comparing used and in-Pipfile packages.
#3745 <https://github.com/pypa/pipenv/issues/3745>
_๐
pipenv update --outdated
will now correctly handle comparisons between pre/post-releases and normal releases.#3766 <https://github.com/pypa/pipenv/issues/3766>
_๐ Fixed a
KeyError
which could occur when pinning outdated VCS dependencies viapipenv lock --keep-outdated
.#3768 <https://github.com/pypa/pipenv/issues/3768>
_๐ Resolved an issue which caused resolution to fail when encountering poorly formatted
python_version
markers insetup.py
andsetup.cfg
files.#3786 <https://github.com/pypa/pipenv/issues/3786>
_๐ Fix a bug that installation errors are displayed as a list.
#3794 <https://github.com/pypa/pipenv/issues/3794>
_โก๏ธ Update
pythonfinder
to fix a problem thatpython.exe
will be mistakenly chosen for virtualenv creation under WSL.#3807 <https://github.com/pypa/pipenv/issues/3807>
_๐ Fixed several bugs which could prevent editable VCS dependencies from being installed into target environments, even when reporting successful installation.
#3809 <https://github.com/pypa/pipenv/issues/3809>
_pipenv check --system
should find the correct Python interpreter whenpython
does not exist on the system.#3819 <https://github.com/pypa/pipenv/issues/3819>
_Resolve the symlinks when the path is absolute.
#3842 <https://github.com/pypa/pipenv/issues/3842>
_โก๏ธ Pass
--pre
and--clear
options topipenv update --outdated
.#3879 <https://github.com/pypa/pipenv/issues/3879>
_๐ Fixed a bug which prevented resolution of direct URL dependencies which have PEP508 style direct url VCS sub-dependencies with subdirectories.
#3976 <https://github.com/pypa/pipenv/issues/3976>
_Honor PIPENV_SPINNER environment variable
#4045 <https://github.com/pypa/pipenv/issues/4045>
_๐ Fixed an issue with
pipenv check
failing due to an invalid API key frompyup.io
.#4188 <https://github.com/pypa/pipenv/issues/4188>
_๐ Fixed a bug which caused versions from VCS dependencies to be included in
Pipfile.lock
inadvertently.#4217 <https://github.com/pypa/pipenv/issues/4217>
_๐ Fixed a bug which caused pipenv to search non-existent virtual environments for
pip
when installing using--system
.#4220 <https://github.com/pypa/pipenv/issues/4220>
_๐
Requires-Python
values specifying constraint versions of python starting from1.x
will now be parsed successfully.#4226 <https://github.com/pypa/pipenv/issues/4226>
_๐ Fix a bug of
pipenv update --outdated
that can't print output correctly.#4229 <https://github.com/pypa/pipenv/issues/4229>
_๐ Fixed a bug which caused pipenv to prefer source distributions over wheels from
PyPI
during the dependency resolution phase. Fixed an issue which prevented proper build isolation usingpep517
based builders during dependency resolution.#4231 <https://github.com/pypa/pipenv/issues/4231>
_Don't fallback to system Python when no matching Python version is found.
#4232 <https://github.com/pypa/pipenv/issues/4232>
_
Vendored Libraries
โก๏ธ Updated vendored dependencies:
- attrs:
18.2.0
=>19.1.0
- certifi:
2018.10.15
=>2019.3.9
- cached_property:
1.4.3
=>1.5.1
- cerberus:
1.2.0
=>1.3.1
- click-completion:
0.5.0
=>0.5.1
- colorama:
0.3.9
=>0.4.1
- distlib:
0.2.8
=>0.2.9
- idna:
2.7
=>2.8
- jinja2:
2.10.0
=>2.10.1
- markupsafe:
1.0
=>1.1.1
- orderedmultidict:
(new)
=>1.0
- packaging:
18.0
=>19.0
- parse:
1.9.0
=>1.12.0
- pathlib2:
2.3.2
=>2.3.3
- pep517:
(new)
=>0.5.0
- pexpect:
4.6.0
=>4.7.0
- pipdeptree:
0.13.0
=>0.13.2
- pyparsing:
2.2.2
=>2.3.1
- python-dotenv:
0.9.1
=>0.10.2
- pythonfinder:
1.1.10
=>1.2.1
- pytoml:
(new)
=>0.1.20
- requests:
2.20.1
=>2.21.0
- requirementslib:
1.3.3
=>1.5.0
- scandir:
1.9.0
=>1.10.0
- shellingham:
1.2.7
=>1.3.1
- six:
1.11.0
=>1.12.0
- tomlkit:
0.5.2
=>0.5.3
- urllib3:
1.24
=>1.25.2
- vistir:
0.3.0
=>0.4.1
- yaspin:
0.14.0
=>0.14.3
- Removed vendored dependency cursor.
#3298 <https://github.com/pypa/pipenv/issues/3298>
_
- attrs:
๐ Updated
pip_shims
to support--outdated
with new pip versions.#3766 <https://github.com/pypa/pipenv/issues/3766>
_โก๏ธ Update vendored dependencies and invocations
- Update vendored and patched dependencies
- Update patches on
piptools
,pip
,pip-shims
, `tomlkit
- Fix invocations of dependencies
- Fix custom `
InstallCommand
instantiation - Update `
PackageFinder
usage - Fix
Bool` stringify attempts from
tomlkit`
Updated vendored dependencies: - attrs:
18.2.0`` =>
19.1.0- **certifi**:
2018.10.15
=>
2019.3.9
- cached_property:1.4.3`` =>
1.5.1- **cerberus**:
1.2.0
=>
1.3.1
- click:7.0.0`` =>
7.1.1- **click-completion**:
0.5.0
=>
0.5.1
- colorama:0.3.9`` =>
0.4.3- **contextlib2**:
(new)
=>
0.6.0.post1
- distlib:0.2.8`` =>
0.2.9- **funcsigs**:
(new)
=>
1.0.2
- importlib_metadata1.3.0`` =>
1.5.1- **importlib-resources**:
(new)
=>
1.4.0
- idna:2.7`` =>
2.9- **jinja2**:
2.10.0
=>
2.11.1
- markupsafe:1.0`` =>
1.1.1- **more-itertools**:
(new)
=>
5.0.0
- orderedmultidict:(new)`` =>
1.0- **packaging**:
18.0
=>
19.0
- parse:1.9.0`` =>
1.15.0- **pathlib2**:
2.3.2
=>
2.3.3
- pep517:(new)`` =>
0.5.0- **pexpect**:
4.6.0
=>
4.8.0
- pip-shims:0.2.0`` =>
0.5.1- **pipdeptree**:
0.13.0
=>
0.13.2
- pyparsing:2.2.2`` =>
2.4.6- **python-dotenv**:
0.9.1
=>
0.10.2
- pythonfinder:1.1.10`` =>
1.2.2- **pytoml**:
(new)
=>
0.1.20
- requests:2.20.1`` =>
2.23.0- **requirementslib**:
1.3.3
=>
1.5.4
- scandir:1.9.0`` =>
1.10.0- **shellingham**:
1.2.7
=>
1.3.2
- six:1.11.0`` =>
1.14.0- **tomlkit**:
0.5.2
=>
0.5.11
- urllib3:1.24`` =>
1.25.8- **vistir**:
0.3.0
=>
0.5.0
- yaspin:0.14.0`` =>
0.14.3- **zipp**:
0.6.0
`- Removed vendored dependency cursor.
#4169 <https://github.com/pypa/pipenv/issues/4169>
_- โ Add and update vendored dependencies to accommodate
safety
vendoring:
- โ Add and update vendored dependencies to accommodate
- safety
(none)
=>1.8.7
- dparse
(none)
=>0.5.0
- pyyaml
(none)
=>5.3.1
- urllib3
1.25.8
=>1.25.9
- certifi
2019.11.28
=>2020.4.5.1
- pyparsing
2.4.6
=>2.4.7
- resolvelib
0.2.2
=>0.3.0
- importlib-metadata
1.5.1
=>1.6.0
- pip-shims
0.5.1
=>0.5.2
requirementslib
1.5.5
=>1.5.6
#4188 <https://github.com/pypa/pipenv/issues/4188>
_- โก๏ธ Updated vendored
pip
=>20.0.2
andpip-tools
=>5.0.0
.#4215 <https://github.com/pypa/pipenv/issues/4215>
_ - โก๏ธ Updated vendored dependencies to latest versions for security and bug fixes:
- โก๏ธ Updated vendored
requirementslib
1.5.8
=>1.5.9
vistir
0.5.0
=>0.5.1
jinja2
2.11.1
=>2.11.2
click
7.1.1
=>7.1.2
dateutil
(none)
=>2.8.1
backports.functools_lru_cache
1.5.0
=>1.6.1
enum34
1.1.6
=>1.1.10
toml
0.10.0
=>0.10.1
importlib_resources
1.4.0
=>1.5.0
#4226 <https://github.com/pypa/pipenv/issues/4226>
_- ๐ Changed attrs import path in vendored dependencies to always import from
pipenv.vendor
.#4267 <https://github.com/pypa/pipenv/issues/4267>
_
- ๐ Changed attrs import path in vendored dependencies to always import from
๐ Improved Documentation
- โ Added documenation about variable expansion in
Pipfile
entries.#2317 <https://github.com/pypa/pipenv/issues/2317>
_ - ๐ Consolidate all contributing docs in the rst file
#3120 <https://github.com/pypa/pipenv/issues/3120>
_ - โก๏ธ Update the out-dated manual page.
#3246 <https://github.com/pypa/pipenv/issues/3246>
_ - ๐ Move CLI docs to its own page.
#3346 <https://github.com/pypa/pipenv/issues/3346>
_ - ๐ Replace (non-existant) video on docs index.rst with equivalent gif.
#3499 <https://github.com/pypa/pipenv/issues/3499>
_ - Clarify wording in Basic Usage example on using double quotes to escape shell redirection
#3522 <https://github.com/pypa/pipenv/issues/3522>
_ - ๐ Ensure docs show navigation on small-screen devices
#3527 <https://github.com/pypa/pipenv/issues/3527>
_ - โ Added a link to the TOML Spec under General Recommendations & Version Control to clarify how Pipfiles should be written.
#3629 <https://github.com/pypa/pipenv/issues/3629>
_ - ๐ Updated the documentation with the new
pytest
entrypoint.#3759 <https://github.com/pypa/pipenv/issues/3759>
_ - ๐ Fix link to GIF in README.md demonstrating Pipenv's usage, and add descriptive alt text.
#3911 <https://github.com/pypa/pipenv/issues/3911>
_ - โ Added a line describing potential issues in fancy extension.
#3912 <https://github.com/pypa/pipenv/issues/3912>
_ - Documental description of how Pipfile works and association with Pipenv.
#3913 <https://github.com/pypa/pipenv/issues/3913>
_ - ๐ Clarify the proper value of
python_version
andpython_full_version
.#3914 <https://github.com/pypa/pipenv/issues/3914>
_ - ๐ Write description for --deploy extension and few extensions differences.
#3915 <https://github.com/pypa/pipenv/issues/3915>
_ - ๐ More documentation for
.env
files#4100 <https://github.com/pypa/pipenv/issues/4100>
_ - ๐ Updated documentation to point to working links.
#4137 <https://github.com/pypa/pipenv/issues/4137>
_ - ๐ Replace docs.pipenv.org with pipenv.pypa.io
#4167 <https://github.com/pypa/pipenv/issues/4167>
_ - โ Added functionality to check spelling in documentation and cleaned up existing typographical issues.
#4209 <https://github.com/pypa/pipenv/issues/4209>
_
- ๐
-
v2020.4.1.b2
May 20, 2020 -
v2020.4.1.b1
April 29, 2020 -
v2020.4.1.a2
April 29, 2020 -
v2018.11.26 Changes
November 26, 2018๐ Bug Fixes
- Environment variables are expanded correctly before running scripts on POSIX.
#3178 <https://github.com/pypa/pipenv/issues/3178>
_ - Pipenv will no longer disable user-mode installation when the
--system
flag is passed in.#3222 <https://github.com/pypa/pipenv/issues/3222>
_ - ๐ Fixed an issue with attempting to render unicode output in non-unicode locales.
#3223 <https://github.com/pypa/pipenv/issues/3223>
_ - ๐ Fixed a bug which could cause failures to occur when parsing python entries from global pyenv version files.
#3224 <https://github.com/pypa/pipenv/issues/3224>
_ - ๐ Fixed an issue which prevented the parsing of named extras sections from certain
setup.py
files.#3230 <https://github.com/pypa/pipenv/issues/3230>
_ - Correctly detect the virtualenv location inside an activated virtualenv.
#3231 <https://github.com/pypa/pipenv/issues/3231>
_ - ๐ Fixed a bug which caused spinner frames to be written to standard output during locking operations which could cause redirection pipes to fail.
#3239 <https://github.com/pypa/pipenv/issues/3239>
_ - ๐ Fixed a bug that editable packages can't be uninstalled correctly.
#3240 <https://github.com/pypa/pipenv/issues/3240>
_ - Corrected an issue with installation timeouts which caused dependency resolution to fail for longer duration resolution steps.
#3244 <https://github.com/pypa/pipenv/issues/3244>
_ - โ Adding normal pep 508 compatible markers is now fully functional when using VCS dependencies.
#3249 <https://github.com/pypa/pipenv/issues/3249>
_ - โก๏ธ Updated
requirementslib
andpythonfinder
for multiple bug fixes.#3254 <https://github.com/pypa/pipenv/issues/3254>
_ - ๐ Pipenv will now ignore hashes when installing with
--skip-lock
.#3255 <https://github.com/pypa/pipenv/issues/3255>
_ - ๐ Fixed an issue where pipenv could crash when multiple pipenv processes attempted to create the same directory.
#3257 <https://github.com/pypa/pipenv/issues/3257>
_ - ๐ Fixed an issue which sometimes prevented successful creation of a project Pipfile.
#3260 <https://github.com/pypa/pipenv/issues/3260>
_ pipenv install
will now unset thePYTHONHOME
environment variable when not combined with--system
.#3261 <https://github.com/pypa/pipenv/issues/3261>
_- โ Pipenv will ensure that warnings do not interfere with the resolution process by suppressing warnings' usage of standard output and writing to standard error instead.
#3273 <https://github.com/pypa/pipenv/issues/3273>
_ - Fixed an issue which prevented variables from the environment, such as
PIPENV_DEV
orPIPENV_SYSTEM
, from being parsed and implemented correctly.#3278 <https://github.com/pypa/pipenv/issues/3278>
_ - Clear pythonfinder cache after Python install.
#3287 <https://github.com/pypa/pipenv/issues/3287>
_ - ๐ Fixed a race condition in hash resolution for dependencies for certain dependencies with missing cache entries or fresh Pipenv installs.
#3289 <https://github.com/pypa/pipenv/issues/3289>
_ - Pipenv will now respect top-level pins over VCS dependency locks.
#3296 <https://github.com/pypa/pipenv/issues/3296>
_
Vendored Libraries
- โก๏ธ Update vendored dependencies to resolve resolution output parsing and python finding:
pythonfinder 1.1.9 -> 1.1.10
requirementslib 1.3.1 -> 1.3.3
vistir 0.2.3 -> 0.2.5
#3280 <https://github.com/pypa/pipenv/issues/3280>
_
- Environment variables are expanded correctly before running scripts on POSIX.
-
v2018.11.14 Changes
November 14, 2018๐ Features & Improvements
- ๐ Improved exceptions and error handling on failures.
#1977 <https://github.com/pypa/pipenv/issues/1977>
_ - Added persistent settings for all CLI flags via
PIPENV_{FLAG_NAME}
environment variables by enablingauto_envvar_prefix=PIPENV
in click (implements PEEP-0002).#2200 <https://github.com/pypa/pipenv/issues/2200>
_ - โ Added improved messaging about available but skipped updates due to dependency conflicts when running
pipenv update --outdated
.#2411 <https://github.com/pypa/pipenv/issues/2411>
_ - Added environment variable
PIPENV_PYUP_API_KEY
to add ability to override the bundled PyUP.io API key.#2825 <https://github.com/pypa/pipenv/issues/2825>
_ - โ Added additional output to
pipenv update --outdated
to indicate that the operation succeeded and all packages were already up to date.#2828 <https://github.com/pypa/pipenv/issues/2828>
_ - โก๏ธ Updated
crayons
patch to enable colors on native powershell but swap native blue for magenta.#3020 <https://github.com/pypa/pipenv/issues/3020>
_ - โ Added support for
--bare
topipenv clean
, and fixedpipenv sync --bare
to actually reduce output.#3041 <https://github.com/pypa/pipenv/issues/3041>
_ - โ Added windows-compatible spinner via upgraded
vistir
dependency.#3089 <https://github.com/pypa/pipenv/issues/3089>
_ - ๐ - Added support for python installations managed by
asdf
.#3096 <https://github.com/pypa/pipenv/issues/3096>
_ - ๐ Improved runtime performance of no-op commands such as
pipenv --venv
by around 2/3.#3158 <https://github.com/pypa/pipenv/issues/3158>
_ - Do not show error but success for running
pipenv uninstall --all
in a fresh virtual environment.#3170 <https://github.com/pypa/pipenv/issues/3170>
_ - ๐ Improved asynchronous installation and error handling via queued subprocess parallelization.
#3217 <https://github.com/pypa/pipenv/issues/3217>
_
๐ Bug Fixes
- Remote non-PyPI artifacts and local wheels and artifacts will now include their own hashes rather than including hashes from
PyPI
.#2394 <https://github.com/pypa/pipenv/issues/2394>
_ - ๐ Non-ascii characters will now be handled correctly when parsed by pipenv's
ToML
parsers.#2737 <https://github.com/pypa/pipenv/issues/2737>
_ - โก๏ธ Updated
pipenv uninstall
to respect the--skip-lock
argument.#2848 <https://github.com/pypa/pipenv/issues/2848>
_ - ๐ Fixed a bug which caused uninstallation to sometimes fail to successfully remove packages from
Pipfiles
with comments on preceding or following lines.#2885 <https://github.com/pypa/pipenv/issues/2885>
,#3099 <https://github.com/pypa/pipenv/issues/3099>
- ๐ Pipenv will no longer fail when encountering python versions on Windows that have been uninstalled.
#2983 <https://github.com/pypa/pipenv/issues/2983>
_ - ๐ Fixed unnecessary extras are added when translating markers
#3026 <https://github.com/pypa/pipenv/issues/3026>
_ - ๐ Fixed a virtualenv creation issue which could cause new virtualenvs to inadvertently attempt to read and write to global site packages.
#3047 <https://github.com/pypa/pipenv/issues/3047>
_ - ๐ Fixed an issue with virtualenv path derivation which could cause errors, particularly for users on WSL bash.
#3055 <https://github.com/pypa/pipenv/issues/3055>
_ - ๐ Fixed a bug which caused
Unexpected EOF
errors to be thrown whenpip
was waiting for input from users who had put login credentials in environment variables.#3088 <https://github.com/pypa/pipenv/issues/3088>
_ - ๐ Fixed a bug in
requirementslib
which prevented successful installation from mercurial repositories.#3090 <https://github.com/pypa/pipenv/issues/3090>
_ - ๐ Fixed random resource warnings when using pyenv or any other subprocess calls.
#3094 <https://github.com/pypa/pipenv/issues/3094>
_ - ๐ - Fixed a bug which sometimes prevented cloning and parsing
mercurial
requirements.#3096 <https://github.com/pypa/pipenv/issues/3096>
_ - ๐ Fixed an issue in
delegator.py
related to subprocess calls when usingPopenSpawn
to stream output, which sometimes threw unexpectedEOF
errors.#3102 <https://github.com/pypa/pipenv/issues/3102>
,#3114 <https://github.com/pypa/pipenv/issues/3114>
,#3117 <https://github.com/pypa/pipenv/issues/3117>
_ - ๐ Fix the path casing issue that makes
pipenv clean
fail on Windows#3104 <https://github.com/pypa/pipenv/issues/3104>
_ - ๐ Pipenv will avoid leaving build artifacts in the current working directory.
#3106 <https://github.com/pypa/pipenv/issues/3106>
_ - ๐ Fixed issues with broken subprocess calls leaking resource handles and causing random and sporadic failures.
#3109 <https://github.com/pypa/pipenv/issues/3109>
_ - ๐ Fixed an issue which caused
pipenv clean
to sometimes clean packages from the basesite-packages
folder or fail entirely.#3113 <https://github.com/pypa/pipenv/issues/3113>
_ - โก๏ธ Updated
pythonfinder
to correct an issue with unnesting of nested paths when searching for python versions.#3121 <https://github.com/pypa/pipenv/issues/3121>
_ - โ Added additional logic for ignoring and replacing non-ascii characters when formatting console output on non-UTF-8 systems.
#3131 <https://github.com/pypa/pipenv/issues/3131>
_ - Fix virtual environment discovery when
PIPENV_VENV_IN_PROJECT
is set, but the in-project.venv
is a file.#3134 <https://github.com/pypa/pipenv/issues/3134>
_ - ๐ Hashes for remote and local non-PyPI artifacts will now be included in
Pipfile.lock
during resolution.#3145 <https://github.com/pypa/pipenv/issues/3145>
_ - ๐ Fix project path hashing logic in purpose to prevent collisions of virtual environments.
#3151 <https://github.com/pypa/pipenv/issues/3151>
_ - ๐ Fix package installation when the virtual environment path contains parentheses.
#3158 <https://github.com/pypa/pipenv/issues/3158>
_ - โก๏ธ Azure Pipelines YAML files are updated to use the latest syntax and product name.
#3164 <https://github.com/pypa/pipenv/issues/3164>
_ - ๐ Fixed new spinner success message to write only one success message during resolution.
#3183 <https://github.com/pypa/pipenv/issues/3183>
_ - Pipenv will now correctly respect the
--pre
option when used withpipenv install
.#3185 <https://github.com/pypa/pipenv/issues/3185>
_ - ๐ Fix a bug where exception is raised when run pipenv graph in a project without created virtualenv
#3201 <https://github.com/pypa/pipenv/issues/3201>
_ - When sources are missing names, names will now be derived from the supplied URL.
#3216 <https://github.com/pypa/pipenv/issues/3216>
_
Vendored Libraries
- โก๏ธ Updated
pythonfinder
to correct an issue with unnesting of nested paths when searching for python versions.#3061 <https://github.com/pypa/pipenv/issues/3061>
,#3121 <https://github.com/pypa/pipenv/issues/3121>
- โก๏ธ Updated vendored dependencies:
certifi 2018.08.24 => 2018.10.15
urllib3 1.23 => 1.24
requests 2.19.1 => 2.20.0
shellingham
1.2.6 => 1.2.7``tomlkit 0.4.4. => 0.4.6
vistir 0.1.6 => 0.1.8
pythonfinder 0.1.2 => 0.1.3
requirementslib 1.1.9 => 1.1.10
backports.functools_lru_cache 1.5.0 (new)
cursor 1.2.0 (new)
#3089 <https://github.com/pypa/pipenv/issues/3089>
_
- โก๏ธ Updated vendored dependencies:
requests 2.19.1 => 2.20.1
tomlkit 0.4.46 => 0.5.2
vistir 0.1.6 => 0.2.4
pythonfinder 1.1.2 => 1.1.8
requirementslib 1.1.10 => 1.3.0
#3096 <https://github.com/pypa/pipenv/issues/3096>
_
- ๐ Switch to
tomlkit
for parsing and writing. Dropprettytoml
andcontoml
from vendors.#3191 <https://github.com/pypa/pipenv/issues/3191>
_ - โก๏ธ Updated
requirementslib
to aid in resolution of local and remote archives.#3196 <https://github.com/pypa/pipenv/issues/3196>
_
๐ Improved Documentation
- ๐ Expanded development and testing documentation for contributors to get started.
#3074 <https://github.com/pypa/pipenv/issues/3074>
_
- ๐ Improved exceptions and error handling on failures.
-
v2018.10.13 Changes
October 13, 2018๐ Bug Fixes
๐ Fixed a bug in
pipenv clean
which caused global packages to sometimes be inadvertently targeted for cleanup.#2849 <https://github.com/pypa/pipenv/issues/2849>
_๐ Fix broken backport imports for vendored vistir.
#2950 <https://github.com/pypa/pipenv/issues/2950>
,#2955 <https://github.com/pypa/pipenv/issues/2955>
,#2961 <https://github.com/pypa/pipenv/issues/2961>
_๐ Fixed a bug with importing local vendored dependencies when running
pipenv graph
.#2952 <https://github.com/pypa/pipenv/issues/2952>
_๐ Fixed a bug which caused executable discovery to fail when running inside a virtualenv.
#2957 <https://github.com/pypa/pipenv/issues/2957>
_๐ Fix parsing of outline tables.
#2971 <https://github.com/pypa/pipenv/issues/2971>
_Fixed a bug which caused
verify_ssl
to fail to drop through topip install
correctly astrusted-host
.#2979 <https://github.com/pypa/pipenv/issues/2979>
_๐ Fixed a bug which caused canonicalized package names to fail to resolve against PyPI.
#2989 <https://github.com/pypa/pipenv/issues/2989>
_โจ Enhanced CI detection to detect Azure Devops builds.
#2993 <https://github.com/pypa/pipenv/issues/2993>
_๐ Fixed a bug which prevented installing pinned versions which used redirection symbols from the command line.
#2998 <https://github.com/pypa/pipenv/issues/2998>
_๐ Fixed a bug which prevented installing the local directory in non-editable mode.
#3005 <https://github.com/pypa/pipenv/issues/3005>
_
Vendored Libraries
โก๏ธ Updated
requirementslib
to version1.1.9
.#2989 <https://github.com/pypa/pipenv/issues/2989>
_โฌ๏ธ Upgraded
pythonfinder => 1.1.1
andvistir => 0.1.7
.#3007 <https://github.com/pypa/pipenv/issues/3007>
_
-
v2018.10.9 Changes
October 09, 2018๐ Features & Improvements
Added environment variables
PIPENV_VERBOSE
andPIPENV_QUIET
to control output verbosity without needing to pass options.#2527 <https://github.com/pypa/pipenv/issues/2527>
_โก๏ธ Updated test-PyPI add-on to better support json-API access (forward compatibility). Improved testing process for new contributors.
#2568 <https://github.com/pypa/pipenv/issues/2568>
_Greatly enhanced python discovery functionality:
- Added pep514 (windows launcher/finder) support for python discovery.
- Introduced architecture discovery for python installations which support different architectures.
#2582 <https://github.com/pypa/pipenv/issues/2582>
_
โ Added support for
pipenv shell
on msys and cygwin/mingw/git bash for Windows.#2641 <https://github.com/pypa/pipenv/issues/2641>
_โจ Enhanced resolution of editable and VCS dependencies.
#2643 <https://github.com/pypa/pipenv/issues/2643>
_Deduplicate and refactor CLI to use stateful arguments and object passing. See
this issue <https://github.com/pallets/click/issues/108>
_ for reference.#2814 <https://github.com/pypa/pipenv/issues/2814>
_
Behavior Changes
Virtual environment activation for
run
is revised to improve interpolation with other Python discovery tools.#2503 <https://github.com/pypa/pipenv/issues/2503>
_๐ Improve terminal coloring to display better in Powershell.
#2511 <https://github.com/pypa/pipenv/issues/2511>
_Invoke
virtualenv
directly for virtual environment creation, instead of depending onpew
.#2518 <https://github.com/pypa/pipenv/issues/2518>
_pipenv --help
will now include short help descriptions.#2542 <https://github.com/pypa/pipenv/issues/2542>
_โ Add
COMSPEC
to fallback option (along withSHELL
andPYENV_SHELL
) if shell detection fails, improving robustness on Windows.#2651 <https://github.com/pypa/pipenv/issues/2651>
_๐ Fallback to shell mode if
run
fails with Windows error 193 to handle non-executable commands. This should improve usability on Windows, where some users run non-executable files without specifying a command, relying on Windows file association to choose the current command.#2718 <https://github.com/pypa/pipenv/issues/2718>
_
๐ Bug Fixes
๐ Fixed a bug which prevented installation of editable requirements using
ssh://
style URLs#1393 <https://github.com/pypa/pipenv/issues/1393>
_โก๏ธ VCS Refs for locked local editable dependencies will now update appropriately to the latest hash when running
pipenv update
.#1690 <https://github.com/pypa/pipenv/issues/1690>
_.tar.gz
and.zip
artifacts will now have dependencies installed even when they are missing from the Lockfile.#2173 <https://github.com/pypa/pipenv/issues/2173>
_๐ The command line parser will now handle multiple
-e/--editable
dependencies properly via click's option parser to help mitigate future parsing issues.#2279 <https://github.com/pypa/pipenv/issues/2279>
_๐ Fixed the ability of pipenv to parse
dependency_links
fromsetup.py
whenPIP_PROCESS_DEPENDENCY_LINKS
is enabled.#2434 <https://github.com/pypa/pipenv/issues/2434>
_๐ Fixed a bug which could cause
-i/--index
arguments to sometimes be incorrectly picked up in packages. This is now handled in the command line parser.#2494 <https://github.com/pypa/pipenv/issues/2494>
_๐ Fixed non-deterministic resolution issues related to changes to the internal package finder in
pip 10
.#2499 <https://github.com/pypa/pipenv/issues/2499>
,#2529 <https://github.com/pypa/pipenv/issues/2529>
,#2589 <https://github.com/pypa/pipenv/issues/2589>
,#2666 <https://github.com/pypa/pipenv/issues/2666>
,#2767 <https://github.com/pypa/pipenv/issues/2767>
,#2785 <https://github.com/pypa/pipenv/issues/2785>
,#2795 <https://github.com/pypa/pipenv/issues/2795>
,#2801 <https://github.com/pypa/pipenv/issues/2801>
,#2824 <https://github.com/pypa/pipenv/issues/2824>
,#2862 <https://github.com/pypa/pipenv/issues/2862>
,#2879 <https://github.com/pypa/pipenv/issues/2879>
,#2894 <https://github.com/pypa/pipenv/issues/2894>
,#2933 <https://github.com/pypa/pipenv/issues/2933>
_๐ Fix subshell invocation on Windows for Python 2.
#2515 <https://github.com/pypa/pipenv/issues/2515>
_๐ Fixed a bug which sometimes caused pipenv to throw a
TypeError
or to run into encoding issues when writing a Lockfile on python 2.#2561 <https://github.com/pypa/pipenv/issues/2561>
_๐ Improve quoting logic for
pipenv run
so it works better with Windows built-in commands.#2563 <https://github.com/pypa/pipenv/issues/2563>
_๐ Fixed a bug related to parsing VCS requirements with both extras and subdirectory fragments. Corrected an issue in the
requirementslib
parser which led to some markers being discarded rather than evaluated.#2564 <https://github.com/pypa/pipenv/issues/2564>
_๐ Fixed multiple issues with finding the correct system python locations.
#2582 <https://github.com/pypa/pipenv/issues/2582>
_๐ Catch JSON decoding error to prevent exception when the lock file is of invalid format.
#2607 <https://github.com/pypa/pipenv/issues/2607>
_๐ Fixed a rare bug which could sometimes cause errors when installing packages with custom sources.
#2610 <https://github.com/pypa/pipenv/issues/2610>
_โก๏ธ Update requirementslib to fix a bug which could raise an
UnboundLocalError
when parsing malformed VCS URIs.#2617 <https://github.com/pypa/pipenv/issues/2617>
_๐ Fixed an issue which prevented passing multiple
--ignore
parameters topipenv check
.#2632 <https://github.com/pypa/pipenv/issues/2632>
_๐ Fixed a bug which caused attempted hashing of
ssh://
style URIs which could cause failures during installation of private ssh repositories.- Corrected path conversion issues which caused certain editable VCS paths to be converted to
ssh://
URIs improperly.#2639 <https://github.com/pypa/pipenv/issues/2639>
_
- Corrected path conversion issues which caused certain editable VCS paths to be converted to
๐ Fixed a bug which caused paths to be formatted incorrectly when using
pipenv shell
in bash for windows.#2641 <https://github.com/pypa/pipenv/issues/2641>
_๐จ Dependency links to private repositories defined via
ssh://
schemes will now install correctly and skip hashing as long asPIP_PROCESS_DEPENDENCY_LINKS=1
.#2643 <https://github.com/pypa/pipenv/issues/2643>
_๐ Fixed a bug which sometimes caused pipenv to parse the
trusted_host
argument to pip incorrectly when parsing source URLs which specifyverify_ssl = false
.#2656 <https://github.com/pypa/pipenv/issues/2656>
_Prevent crashing when a virtual environment in
WORKON_HOME
is faulty.#2676 <https://github.com/pypa/pipenv/issues/2676>
_๐ Fixed virtualenv creation failure when a .venv file is present in the project root.
#2680 <https://github.com/pypa/pipenv/issues/2680>
_๐ Fixed a bug which could cause the
-e/--editable
argument on a dependency to be accidentally parsed as a dependency itself.#2714 <https://github.com/pypa/pipenv/issues/2714>
_Correctly pass
verbose
anddebug
flags to the resolver subprocess so it generates appropriate output. This also resolves a bug introduced by the fix to #2527.#2732 <https://github.com/pypa/pipenv/issues/2732>
_๐ All markers are now included in
pipenv lock --requirements
output.#2748 <https://github.com/pypa/pipenv/issues/2748>
_๐ Fixed a bug in marker resolution which could cause duplicate and non-deterministic markers.
#2760 <https://github.com/pypa/pipenv/issues/2760>
_๐ Fixed a bug in the dependency resolver which caused regular issues when handling
setup.py
based dependency resolution.#2766 <https://github.com/pypa/pipenv/issues/2766>
_โก๏ธ Updated vendored dependencies:
pip-tools
(updated and patched to latest w/pip 18.0
compatibility)pip 10.0.1 => 18.0
click 6.7 => 7.0
toml 0.9.4 => 0.10.0
pyparsing 2.2.0 => 2.2.2
delegator 0.1.0 => 0.1.1
attrs 18.1.0 => 18.2.0
distlib 0.2.7 => 0.2.8
packaging 17.1.0 => 18.0
passa 0.2.0 => 0.3.1
pip_shims 0.1.2 => 0.3.1
plette 0.1.1 => 0.2.2
pythonfinder 1.0.2 => 1.1.0
pytoml 0.1.18 => 0.1.19
requirementslib 1.1.16 => 1.1.17
shellingham 1.2.4 => 1.2.6
tomlkit 0.4.2 => 0.4.4
vistir 0.1.4 => 0.1.6
#2802 <https://github.com/pypa/pipenv/issues/2802>
,#2867 <https://github.com/pypa/pipenv/issues/2867>
,#2880 <https://github.com/pypa/pipenv/issues/2880>
_
Fixed a bug where
pipenv
crashes when theWORKON_HOME
directory does not exist.#2877 <https://github.com/pypa/pipenv/issues/2877>
_๐ Fixed pip is not loaded from pipenv's patched one but the system one
#2912 <https://github.com/pypa/pipenv/issues/2912>
_๐ Fixed various bugs related to
pip 18.1
release which prevented locking, installation, and syncing, and dumping to arequirements.txt
file.#2924 <https://github.com/pypa/pipenv/issues/2924>
_
Vendored Libraries
๐ฆ Pew is no longer vendored. Entry point
pewtwo
, packagespipenv.pew
andpipenv.patched.pew
are removed.#2521 <https://github.com/pypa/pipenv/issues/2521>
_๐ Update
pythonfinder
to major release1.0.0
for integration.#2582 <https://github.com/pypa/pipenv/issues/2582>
_โก๏ธ Update requirementslib to fix a bug which could raise an
UnboundLocalError
when parsing malformed VCS URIs.#2617 <https://github.com/pypa/pipenv/issues/2617>
_- Vendored new libraries
vistir
andpip-shims
,tomlkit
,modutil
, andplette
.
- Update vendored libraries:
scandir
to1.9.0
click-completion
to0.4.1
semver
to2.8.1
shellingham
to1.2.4
pytoml
to0.1.18
certifi
to2018.8.24
ptyprocess
to0.6.0
requirementslib
to1.1.5
pythonfinder
to1.0.2
pipdeptree
to0.13.0
python-dotenv
to0.9.1
#2639 <https://github.com/pypa/pipenv/issues/2639>
_
- Vendored new libraries
โก๏ธ Updated vendored dependencies:
pip-tools
(updated and patched to latest w/pip 18.0
compatibility)pip 10.0.1 => 18.0
click 6.7 => 7.0
toml 0.9.4 => 0.10.0
pyparsing 2.2.0 => 2.2.2
delegator 0.1.0 => 0.1.1
attrs 18.1.0 => 18.2.0
distlib 0.2.7 => 0.2.8
packaging 17.1.0 => 18.0
passa 0.2.0 => 0.3.1
pip_shims 0.1.2 => 0.3.1
plette 0.1.1 => 0.2.2
pythonfinder 1.0.2 => 1.1.0
pytoml 0.1.18 => 0.1.19
requirementslib 1.1.16 => 1.1.17
shellingham 1.2.4 => 1.2.6
tomlkit 0.4.2 => 0.4.4
vistir 0.1.4 => 0.1.6
#2902 <https://github.com/pypa/pipenv/issues/2902>
,#2935 <https://github.com/pypa/pipenv/issues/2935>
๐ Improved Documentation
๐ง Simplified the test configuration process.
#2568 <https://github.com/pypa/pipenv/issues/2568>
_๐ Updated documentation to use working fortune cookie add-on.
#2644 <https://github.com/pypa/pipenv/issues/2644>
_Added additional information about troubleshooting
pipenv shell
by using the the$PIPENV_SHELL
environment variable.#2671 <https://github.com/pypa/pipenv/issues/2671>
_โ Added a link to
PEP-440
version specifiers in the documentation for additional detail.#2674 <https://github.com/pypa/pipenv/issues/2674>
_โ Added simple example to README.md for installing from git.
#2685 <https://github.com/pypa/pipenv/issues/2685>
_๐ณ Stopped recommending
--system
for Docker contexts.#2762 <https://github.com/pypa/pipenv/issues/2762>
_๐ Fixed the example url for doing "pipenv install -e some-repository-url#egg=something", it was missing the "egg=" in the fragment identifier.
#2792 <https://github.com/pypa/pipenv/issues/2792>
_๐ Fixed link to the "be cordial" essay in the contribution documentation.
#2793 <https://github.com/pypa/pipenv/issues/2793>
_๐ Clarify
pipenv install
documentation#2844 <https://github.com/pypa/pipenv/issues/2844>
_Replace reference to uservoice with PEEP-000
#2909 <https://github.com/pypa/pipenv/issues/2909>
_