Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Template for users to report resolver failures #8207

Merged
merged 6 commits into from
May 11, 2020
Merged
Show file tree
Hide file tree
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
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/resolver-failure.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Dependency resolver failures / errors
about: Report when the pip dependency resolver fails
labels: ["K: UX", "K: crash", "C: new resolver", "C: dependency resolution"]
---

<!--
Please provide as much information as you can about your failure, so that we can understand the root cause.

For example, if you are installing packages from pypi.org, we'd like to see:

- Your terminal output
- Any inputs to pip, for example:
- any package requirements: any CLI arguments and/or your requirements.txt file
- any already installed packages, outputted via `pip freeze`

It would be great if you could also include your dependency tree. For this you can use pipdeptree: https://pypi.org/project/pipdeptree/
nlhkabu marked this conversation as resolved.
Show resolved Hide resolved

For users installing packages from a private repository or local directory, please try your best to describe your setup. We'd like to understand how to reproduce the error locally, so would need (at a minimum) a description of the packages you are trying to install, and a list of dependencies for each package.
-->
1 change: 1 addition & 0 deletions news/8207.doc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Add GitHub issue template for reporting when the dependency resolver fails