update ISSUE_TEMPLATE.md

This commit is contained in:
Ivan Pozdeev 2021-11-23 20:22:59 +03:00
parent a681e756e1
commit f2925393e4

View file

@ -17,14 +17,5 @@ Make sure you have checked all steps below.
- [ ] pyenv version: - [ ] pyenv version:
- [ ] Python version: - [ ] Python version:
- [ ] C Compiler information (e.g. gcc 7.3): - [ ] C Compiler information (e.g. gcc 7.3):
- [ ] Please reproduce the problem with debug tracing enabled and attach the resulting output as a gist - [ ] Please attach the debug trace of the failing command as a gist:
* If the problem happens in a Pyenv invocation, you can turn on tracing by setting `PYENV_DEBUG=1`, e.g. `env PYENV_DEBUG=1 pyenv install -v 3.6.4` * Run `env PYENV_DEBUG=1 <faulty command> 2>&1 | tee trace.log` and attach `trace.log`. E.g. if you have a problem with installing Python, run `env PYENV_DEBUG=1 pyenv install -v <version> 2>&1 | tee trace.log` (note the `-v` option to `pyenv install`).
* If the problem is with `pyenv install`, make sure to also enable its verbose mode (`-v`)
* If the problem happens outside of a Pyenv invocation, enable shell trace output like this:
```sh
export PS4='+(${(%):-%x}:${LINENO}): ${funcstack[0]:+${funcstack[0]}(): }' #Zsh
export PS4='+(${BASH_SOURCE}:${LINENO}): ${FUNCNAME[0]:+${FUNCNAME[0]}(): }' #Bash
set -x
<reproduce the problem>
set +x
```