Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 51 additions & 0 deletions peeps/PEEP-007.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
# PEEP-007: Accepting pre-releases for specific packages

**PROPOSED**

This PEEP describes a change that would allow installing pre-release packages
selectively.


## Installing pre-releases

The current implementation of Pipenv offers capability to install pre-releases
based on the ``--pre`` flag supplied. Another option is to enable installing
pre-releases in the Pipfile itself:

```toml
[pipenv]
allow_prereleases = true
```

This behavior allows installing packages marked as pre-releases for all the
packages that are considered during the dependency resolution. This behavior
might bring unwanted packages to the resolved stack if user's want to
selectively allow packages for which pre-releases are acceptable.

## Accepting pre-releases for certain packages

This PEEP proposes an option which will selectivelly allow installing
pre-releases only for certain packages. The configuration option can be
supplied to the package entry in the Pipfile, similarly as [specifying package
index to be used for installing the
package](https://pipenv-fork.readthedocs.io/en/latest/advanced.html#specifying-package-indexes):

```toml
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"

[packages]
requests = {version="*", index="pypi", allow_prereleases=true}
```

## References

* [pypa/pipenv#1760](https://github.com/pypa/pipenv/issues/1760)

Authors:

* Gaetan Semet <[email protected]>
* Fridolin Pokorny <[email protected]>