Skip to content

Releases: pypa/pipenv

Release v2021.5.29

29 May 03:07
72835f1
Compare
Choose a tag to compare
v2021.5.29

Release v2020.11.15

15 Nov 04:16
Compare
Choose a tag to compare
Version v2020.11.15

Features & Improvements
-----------------------

- Support expanding environment variables in requirement URLs.  _
- Show warning message when a dependency is skipped in locking due to the mismatch of its markers.  _

Bug Fixes
---------

- Fix a bug that executable scripts with leading backslash can't be executed via pipenv run.  _
- Fix a bug that VCS dependencies always satisfy even if the ref has changed.  _
- Restrict the acceptable hash type to SHA256 only.  _
- Fix the output of pipenv scripts under Windows platform.  _
- Fix a bug that the resolver takes wrong section to validate constraints.  _

Vendored Libraries
------------------

- Update vendored dependencies:
  - colorama from 0.4.3 to 0.4.4
  - python-dotenv from 0.10.3 to 0.15.0
  - first from 2.0.1 to 2.0.2
  - iso8601 from 0.1.12 to 0.1.13
  - parse from 1.15.0 to 1.18.0
  - pipdeptree from 0.13.2 to 1.0.0
  - requests from 2.23.0 to 2.25.0
  - idna from 2.9 to 2.10
  - urllib3 from 1.25.9 to 1.26.1
  - certifi from 2020.4.5.1 to 2020.11.8
  - requirementslib from 1.5.15 to 1.5.16
  - attrs from 19.3.0 to 20.3.0
  - distlib from 0.3.0 to 0.3.1
  - packaging from 20.3 to 20.4
  - six from 1.14.0 to 1.15.0
  - semver from 2.9.0 to 2.13.0
  - toml from 0.10.1 to 0.10.2
  - cached-property from 1.5.1 to 1.5.2
  - yaspin from 0.14.3 to 1.2.0
  - resolvelib from 0.3.0 to 0.5.2
  - pep517 from 0.8.2 to 0.9.1
  - zipp from 0.6.0 to 1.2.0
  - importlib-metadata from 1.6.0 to 2.0.0
  - importlib-resources from 1.5.0 to 3.3.0  _

Improved Documentation
----------------------

- Fix suggested pyenv setup to avoid using shimmed interpreter  _

Release v2020.11.4

04 Nov 12:39
Compare
Choose a tag to compare
Version v2020.11.4

Features & Improvements
-----------------------

- Add a new command pipenv scripts to display shortcuts from Pipfile.  _
- Retrieve package file hash from URL to accelerate the locking process.  _
- Add the missing --system option to pipenv sync.  _
- Add a new option pair --header/--no-header to pipenv lock command,
  which adds a header to the generated requirements.txt  _

Bug Fixes
---------

- Fix a bug that percent encoded characters will be unquoted incorrectly in the file URL.  _
- Fix a bug where setting PIPENV_PYTHON to file path breaks environment name  _
- Fix a bug that paths are not normalized before comparison.  _
- Handle Python major and minor versions correctly in Pipfile creation.  _
- Fix a bug that non-wheel file requirements can be resolved successfully.  _
- Fix a bug that pexept.exceptions.TIMEOUT is not caught correctly because of the wrong import path.  _
- Fix a bug that compound TOML table is not parsed correctly.  _
- Fix a bug that invalid Python paths from Windows registry break pipenv install.  _
- Fix a bug that function calls in setup.py can't be parsed rightly.  _
- Fix a bug that dist-info inside venv directory will be mistaken as the editable package's metadata.  _
- Make the order of hashes in resolution result stable.  _

Vendored Libraries
------------------

- Update tomlkit from 0.5.11 to 0.7.0.  _
- Update requirementslib from 1.5.13 to 1.5.14.  _

Improved Documentation
----------------------

- Discourage homebrew installation in installation guides.  _

Release v2020.8.13

13 Aug 13:29
Compare
Choose a tag to compare

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 to 1.5.12. #4385 <https://github.com/pypa/pipenv/issues/4385>_
    • Update requirements to 1.5.13.
    • Update pip-shims to 0.5.3. #4421 <https://github.com/pypa/pipenv/issues/4421>_

Release v2020.6.2

02 Jun 06:15
a44b982
Compare
Choose a tag to compare

2020.6.2 (2020-06-02)

Features & Improvements

  • Pipenv will now detect existing venv and virtualenv based virtual environments more robustly. #4276

Bug Fixes

  • + signs in URL authentication fragments will no longer be incorrectly replaced with space ( ) characters. #4271
  • Fixed a regression which caused Pipenv to fail when running under /. #4273
  • setup.py files with version variables read from os.environ are now able to be parsed successfully. #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
  • Fix a bug that caused non-specific versions to be pinned in Pipfile.lock. #4278
  • Corrected a missing exception import and invalid function call invocations in pipenv.cli.command. #4286
  • Fixed an issue with resolving packages with names defined by function calls in setup.py. #4292
  • Fixed a regression with installing the current directory, or ., inside a venv based virtual environment. #4295
  • Fixed a bug with the discovery of python paths on Windows which could prevent installation of environments during pipenv install. #4296
  • Fixed an issue in the requirementslib AST parser which prevented parsing of setup.py files for dependency metadata. #4298
  • Fix a bug where Pipenv doesn't realize the session is interactive #4305

Vendored Libraries

  • Updated requirementslib to version 1.5.11. #4292
  • Updated vendored dependencies:
    • pythonfinder: 1.2.2 => 1.2.4
    • requirementslib: 1.5.9 => 1.5.10 #4302

Release v2020.5.28

28 May 04:52
v2020.5.28
472618c
Compare
Choose a tag to compare

2020.5.28 (2020-05-28)

Features & Improvements

  • pipenv install and pipenv sync will no longer attempt to install satisfied dependencies during installation. #3057, #3506
  • Added support for resolution of direct-url dependencies in setup.py files to respect PEP-508 style URL dependencies. #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 and stderr consistency. #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 a dev-requirements.txt file). #3316
  • Pipenv will now successfully recursively lock VCS sub-dependencies. #3328
  • Added support for --verbose output to pipenv run. #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
  • Added a new environment variable, PIPENV_RESOLVE_VCS, to toggle dependency resolution off for non-editable VCS, file, and URL based dependencies. #3577
  • Added the ability for Windows users to enable emojis by setting PIPENV_HIDE_EMOJIS=0. #3595
  • Allow overriding PIPENV_INSTALL_TIMEOUT environment variable (in seconds). #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
  • 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
  • Improved verbose logging output during pipenv lock will now stream output to the console while maintaining a spinner. #3810
  • Added support for automatic python installs via asdf and associated PIPENV_DONT_USE_ASDF environment variable. #4018
  • Pyenv/asdf can now be used whether or not they are available on PATH. Setting PYENV_ROOT/ASDF_DIR in a .env file allows Pipenv to install an interpreter without any shell customizations, so long as pyenv/asdf is installed. #4245
  • Added --key command line parameter for including personal PyUp.io API tokens when running pipenv check. #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
  • Do not touch Pipfile early and rely on it so that one can do pipenv sync without a Pipfile. #3386
  • Re-enable --help option for pipenv run command. #3844
  • Make sure pipenv lock -r --pypi-mirror {MIRROR_URL} will respect the pypi-mirror in requirements output. #4199

Bug Fixes

  • Raise PipenvUsageError when [[source]] does not contain url field. #2373
  • Fixed a bug which caused editable package resolution to sometimes fail with an unhelpful setuptools-related error message. #2722
  • Fixed an issue which caused errors due to reliance on the system utilities which and where 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
  • Dependency resolution now writes hashes for local and remote files to the lockfile. #3053
  • Fixed a bug which prevented pipenv graph from correctly showing all dependencies when running from within pipenv shell. #3071
  • Fixed resolution of direct-url dependencies in setup.py files to respect PEP-508 style URL dependencies. #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
  • Quote command arguments with carets (^) on Windows to work around unintended shell escapes. #3307
  • Handle alternate names for UTF-8 encoding. #3313
  • Abort pipenv before adding the non-exist package to Pipfile. #3318
  • Don't normalize the package name user passes in. #3324
  • Fix a bug where custom virtualenv can not be activated with pipenv shell #3339
  • Fix a bug that --site-packages flag is not recognized. #3351
  • Fix a bug where pipenv --clear is not working #3353
  • Fix unhashable type error during $ pipenv install --selective-upgrade #3384
  • Dependencies with direct PEP508 compliant VCS URLs specified in their install_requires will now be successfully locked during the resolution process. #3396
  • Fixed a keyerror which could occur when locking VCS dependencies in
    some cases. #3404
  • Fixed a bug that ValidationError is thrown when some fields are missing in source section. #3427
  • Updated the index names in lock file when source name in Pipfile is changed. #3449
  • Fixed an issue which caused pipenv install --help to show duplicate entries for --pre. #3479
  • Fix bug causing [SSL: CERTIFICATE_VERIFY_FAILED] when Pipfile [[source]] has verify_ssl=false and url with custom port. #3502
  • Fix sync --sequential ignoring pip install errors and logs. #3537
  • Fix the issue that lock file can't be created when PIPENV_PIPFILE is not under working directory. #3584
  • Pipenv will no longer inadvertently set editable=True on all vcs dependencies. #3647
  • The --keep-outdated argument to pipenv install and pipenv 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
  • Fixed a bug which sometimes caused pipenv to fail to respect the --site-packages flag when passed with pipenv install. #3718
  • Normalize the package names to lowercase when comparing used and in-Pipfile packages. #3745
  • pipenv update --outdated will now correctly handle comparisons between pre/post-releases and normal releases. #3766
  • Fixed a KeyError which could occur when pinning outdated VCS dependencies via pipenv lock --keep-outdated. #3768
  • Resolved an issue which caused resolution to fail when encountering poorly formatted python_version markers in setup.py and setup.cfg files. #3786
  • Fix a bug that installation errors are displayed as a list. #3794
  • Update pythonfinder to fix a problem that python.exe will be mistakenly chosen for virtualenv creation under WSL. #3807
  • Fixed several bugs which could prevent editable VCS dependencies from being installed into target environments, even when reporting
    successful installation. #3809
  • pipenv check --system should find the correct Python interpreter when python does not exist on the system. #3819
  • Resolve the symlinks when the path is absolute. #3842
  • Pass --pre and --clear options to pipenv update --outdated. #3879
  • Fixed a bug which prevented resolution of direct URL dependencies which have PEP508 style direct url VCS sub-dependencies with
    subdirectories. #3976
  • Honor PIPENV_SPINNER environment variable #4045
  • Fixed an issue with pipenv check failing due to an invalid API key from pyup.io. #4188
  • Fixed a bug which caused versions from VCS dependencies to be included in Pipfile.lock inadvertently. #4217
  • Fixed a bug which caused pipenv to search non-existent virtual environments for pip when installing using --system. #4220
  • Requires-Python values specifying constraint versions of python starting from 1.x will now be parsed successfully. #4226
  • Fix a bug of pipenv update --outdated that can't print output correctly. #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 using pep517 based builders during dependency resolution. #4231
  • Don't fallback to system Python when no matching Python version is found. #4232

Vendored Libraries

  • Updated pip_shims to support --outdated with new pip versions. #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_metadata 1.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`
      • **pyparsi...
Read more

Release v2020.4.1b2

20 May 20:40
96df756
Compare
Choose a tag to compare
Version v2020.4.1b2

Features & Improvements
-----------------------

- pipenv install and pipenv sync will no longer attempt to install satisfied dependencies during installation.  _,
  _
- Added support for resolution of direct-url dependencies in setup.py files to respect PEP-508 style URL dependencies.  _
- 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 and stderr consistency.  _
- 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 a dev-requirements.txt file).  _
- Pipenv will now successfully recursively lock VCS sub-dependencies.  _
- Added support for --verbose output to pipenv run.  _
- Pipenv will now discover and resolve the intrinsic dependencies of **all** VCS dependencies, whether they are editable or not, to prevent resolution conflicts.  _
- Added a new environment variable, PIPENV_RESOLVE_VCS, to toggle dependency resolution off for non-editable VCS, file, and URL based dependencies.  _
- Added the ability for Windows users to enable emojis by setting PIPENV_HIDE_EMOJIS=0.  _
- Allow overriding PIPENV_INSTALL_TIMEOUT environment variable (in seconds).  _
- 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  (ignore existing packages) - great for CI environments, where you need really fast setup.  _
- 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.  _
- Improved verbose logging output during pipenv lock will now stream output to the console while maintaining a spinner.  _
- Added support for automatic python installs via asdf and associated PIPENV_DONT_USE_ASDF environment variable.  _
- 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.  _
- Added --key command line parameter for including personal PyUp.io API tokens when running pipenv check.  _

Behavior Changes
----------------

- Make conservative checks of known exceptions when subprocess returns output, so user won't see the whole traceback - just the error.  _
- Do not touch Pipfile early and rely on it so that one can do pipenv sync without a Pipfile.  _
- Re-enable --help option for pipenv run command.  _
- Make sure pipenv lock -r --pypi-mirror {MIRROR_URL} will respect the pypi-mirror in requirements output.  _

Bug Fixes
---------

- Raise  when [[source]] does not contain url field.  _
- Fixed a bug which caused editable package resolution to sometimes fail with an unhelpful setuptools-related error message.  _
- Fixed an issue which caused errors due to reliance on the system utilities which and where 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 /home/techalchemy/.virtualenvs/pipenv-0GBqCkUI/bin:/home/techalchemy/.pyenv/shims:/home/techalchemy/.pyenv/bin:/home/techalchemy/.local/bin:/home/techalchemy/bin:/home/techalchemy/go/bin:/home/techalchemy/.pyenv/versions/3.8.2/bin:/home/techalchemy/.pyenv/libexec:/home/techalchemy/.pyenv/plugins/python-build/bin:/home/techalchemy/.pyenv/plugins/pyenv-virtualenv/bin:/home/techalchemy/.pyenv/plugins/pyenv-update/bin:/home/techalchemy/.pyenv/plugins/pyenv-installer/bin:/home/techalchemy/.pyenv/plugins/pyenv-doctor/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/home/techalchemy/.cargo/bin:/home/techalchemy/git/ubuntu-qa-tools/vm-tools.  _
- Dependency resolution now writes hashes for local and remote files to the lockfile.  _
- Fixed a bug which prevented pipenv graph from correctly showing all dependencies when running from within pipenv shell.  _
- Fixed resolution of direct-url dependencies in setup.py files to respect PEP-508 style URL dependencies.  _
- 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.  _
- Quote command arguments with carets (^) on Windows to work around unintended shell escapes.  _
- Handle alternate names for UTF-8 encoding.  _
- Abort pipenv before adding the non-exist package to Pipfile.  _
- Don't normalize the package name user passes in.  _
- Fix a bug where custom virtualenv can not be activated with pipenv shell  _
- Fix a bug that --site-packages flag is not recognized.  _
- Fix a bug where pipenv --clear is not working  _
- Fix unhashable type error during $ pipenv install --selective-upgrade  _
- Dependencies with direct PEP508 compliant VCS URLs specified in their install_requires will now be successfully locked during the resolution process.  _
- Fixed a keyerror which could occur when locking VCS dependencies in some cases.  _
- Fixed a bug that ValidationError is thrown when some fields are missing in source section.  _
- Updated the index names in lock file when source name in Pipfile is changed.  _
- Fixed an issue which caused pipenv install --help to show duplicate entries for --pre.  _
- Fix bug causing [SSL: CERTIFICATE_VERIFY_FAILED] when Pipfile [[source]] has verify_ssl=false and url with custom port.  _
- Fix sync --sequential ignoring pip install errors and logs.  _
- Fix the issue that lock file can't be created when PIPENV_PIPFILE is not under working directory.  _
- Pipenv will no longer inadvertently set editable=True on all vcs dependencies.  _
- The --keep-outdated argument to pipenv install and pipenv 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.  _
- Fixed a bug which sometimes caused pipenv to fail to respect the --site-packages flag when passed with pipenv install.  _
- Normalize the package names to lowercase when comparing used and in-Pipfile packages.  _
- pipenv update --outdated will now correctly handle comparisons between pre/post-releases and normal releases.  _
- Fixed a KeyError which could occur when pinning outdated VCS dependencies via pipenv lock --keep-outdated.  _
- Resolved an issue which caused resolution to fail when encountering poorly formatted python_version markers in setup.py and setup.cfg files.  _
- Fix a bug that installation errors are displayed as a list.  _
- Update pythonfinder to fix a problem that python.exe will be mistakenly chosen for
  virtualenv creation under WSL.  _
- Fixed several bugs which could prevent editable VCS dependencies from being installed into target environments, even when reporting successful installation.  _
- pipenv check --system should find the correct Python interpreter when python does not exist on the system.  _
- Resolve the symlinks when the path is absolute.  _
- Pass --pre and --clear options to pipenv update --outdated.  _
- Fixed a bug which prevented resolution of direct URL dependencies which have PEP508 style direct url VCS sub-dependencies with subdirectories.  _
- Honor PIPENV_SPINNER environment variable  _
- Fixed an issue with pipenv check failing due to an invalid API key from pyup.io.  _
- Fixed a bug which caused versions from VCS dependencies to be included in Pipfile.lock inadvertently.  _
- Fixed a bug which caused pipenv to search non-existent virtual environments for pip when installing using --system.  _
- Requires-Python values specifying constraint versions of python starting from 1.x will now be parsed successfully.  _
- Fix a bug of pipenv update --outdated that can't print output correctly.  _
- 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 using pep517 based builders during dependency resolution.  _
- Don't fallback to system Python when no matching Python version is found.  _

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**.  _
- Updated pip_shims to support --outdated with new pip versions.  _
- Update vendored dependencies and invocations

  - Update vendored and patched dependencies
    - Update patches on piptools, pip, pip-shims, tomlkit instantiation
    - Update PackageFinder stringify attempts from tomlkit18.2.0 => 2018.10.15 => 1.4.3 => 1.2.0 => 7.0.0 => 0.5.0 => 0.3.9 => (new) => 0.2.8 => (new) => 1.3.0 => (new) => 2.7 => 2.10.0 => 1.0 => (new) => (new) => 18.0 => 1.9.0 => 2.3.2 => (new) => 4.6.0 => 0.2.0 => 0.13.0 => 2.2.2 => 0.9.1 => 1.1.10 => (new) => 2.20.1 => 1.3.3 => 1.9.0 => 1.2.7 => 1.11.0 => 0.5.2 => 1.24 => 0.3.0 => 0.14.0 => 0.6.0

  - Removed vendored dependency **cursor**.  _
- Add and update vendored dependencies to accommodate safety vendoring:
  - **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  _
- Updated vendored pip => 20.0.2 and pip-tools => 5.0.0.  _
- Updated vendored dependencies to latest versions for security and bug fixes:

  - **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  _

Improved Documentation
----------------------

- Added documenation about variable expansion in Pipfile entries.  _
- Consolidate all contributing docs in the rst file  _
- Update the out-dated manual page.  _
- Move CLI docs to its own page.  _
- Replace (non-existant) video on docs index.rst with equivalent gif.  _
- Clarify wording in Basic Usage example on using double quotes to escape shell redirection  _
- Ensure docs show navigation on small-screen devices  _
- Added a link to the TOML Spec under General Recommendations & Version Control to clarify how Pipfiles should be written.  _
- Updated the documentation with the new pytest entrypoint.  _
- Fix link to GIF in README.md demonstrating Pipenv's usage, and add descriptive alt text.  _
- Added a line describing potential issues in fancy extension.  _
- Documental description of how Pipfile works and association with Pipenv.  _
- Clarify the proper value of python_version and python_full_version.  _
- Write description for --deploy extension and few extensions differences.  _
- More documentation for .env files  _
- Updated documentation to point to working links.  _
- Replace docs.pipenv.org with pipenv.pypa.io  _
- Added functionality to check spelling in documentation and cleaned up existing typographical issues.  _

Release v2020.4.1b1

29 Apr 04:03
36a5a7c
Compare
Choose a tag to compare
Bumped version.

Signed-off-by: Dan Ryan <dan.ryan@canonical.com>

Release v2020.4.1a2

29 Apr 00:56
4e7b6e6
Compare
Choose a tag to compare
Fix tag syntax in workflow yaml

Signed-off-by: Dan Ryan <dan.ryan@canonical.com>

2018.11.26 (2018-11-26)

26 Nov 07:14
742ae1b
Compare
Choose a tag to compare

2018.11.26 (2018-11-26)

Bug Fixes

  • Environment variables are expanded correctly before running scripts
    on POSIX. #3178
  • Pipenv will no longer disable user-mode installation when the
    --system flag is passed in. #3222
  • Fixed an issue with attempting to render unicode output in
    non-unicode locales. #3223
  • Fixed a bug which could cause failures to occur when parsing python
    entries from global pyenv version files. #3224
  • Fixed an issue which prevented the parsing of named extras sections
    from certain setup.py files. #3230
  • Correctly detect the virtualenv location inside an activated
    virtualenv. #3231
  • Fixed a bug which caused spinner frames to be written to stdout
    during locking operations which could cause redirection pipes to
    fail. #3239
  • Fixed a bug that editable pacakges can't be uninstalled
    correctly. #3240
  • Corrected an issue with installation timeouts which caused
    dependency resolution to fail for longer duration resolution
    steps. #3244
  • Adding normal pep 508 compatible markers is now fully functional
    when using VCS dependencies. #3249
  • Updated requirementslib and pythonfinder for multiple
    bugfixes. #3254
  • Pipenv will now ignore hashes when installing with
    --skip-lock. #3255
  • Fixed an issue where pipenv could crash when multiple pipenv
    processes attempted to create the same directory. #3257
  • Fixed an issue which sometimes prevented successful creation of
    project pipfiles. #3260
  • pipenv install will now unset the PYTHONHOME environment
    variable when not combined with --system. #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
  • Fixed an issue which prevented variables from the environment, such
    as PIPENV_DEV or PIPENV_SYSTEM, from being parsed and
    implemented correctly. #3278
  • Clear pythonfinder cache after Python
    install. #3287
  • Fixed a race condition in hash resolution for dependencies for
    certain dependencies with missing cache entries or fresh Pipenv
    installs. #3289
  • Pipenv will now respect top-level pins over VCS dependency
    locks. #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