-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New Release and bug fixes: * Bump version v1.0.4 * Fixed PR #11 for venv exception handling (fixes #10) * Fixed pyOSinfo uname issue. * Fixed ANSI color capability check in is_posix() (fix #18) (May have broken on older Windows machines or Python versions.) * Fixed wrong Windows-10 creation and modification times ([cm]Times) (Need feedback from native *nix users.) * Added new script pip-search to fix #17 * Changed Shebangs from 'python3' to 'python' * Updated README Changes: deleted: .github/ISSUE_TEMPLATE/bug_report-md.md modified: .github/ISSUE_TEMPLATE/bug_report.md new file: .github/ISSUE_TEMPLATE/config.yml modified: CHANGES.txt modified: README.md modified: pip-date modified: pip-describe new file: pip-search.py modified: pipbyday modified: pyOSinfo modified: pyfileinfo modified: setup.py
- Loading branch information
Showing
12 changed files
with
396 additions
and
212 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,59 @@ | ||
--- | ||
name: Bug report | ||
name: Bug Report | ||
about: Create a report to help us improve | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
|
||
--- | ||
For new bugs and issues, please **make sure** to: | ||
- [ ] check and search previous issues for similar or related problems. | ||
- [ ] get info about your system configuration and environment, if relevant. | ||
- [ ] include detailed information on what you did before the *error/issue* occurred. | ||
- [ ] use code mark-down using 3 back-ticks (\`\`\`), to enclose multi-line code/input/output. | ||
- [ ] include a **screenshot** for issues concerning *layouts, formatting* or other UI stuff. | ||
- [ ] If this is a request for an enhancement or other improvement, please state this clearly. | ||
|
||
|
||
**Environment** | ||
Please provide some information about your computer environment: | ||
|
||
- [ ] OS: | ||
`$W = (Get-CimInstance Win32_OperatingSystem); '{0} ({1})' -f $W.Caption, $W.Verson` (On Windows) | ||
`uname -a` (On WSL or *nix based OS) | ||
- [ ] Python version: | ||
`python -VV && python -c "import os; print('\n'.join([os.name, os.sys.platform]));"` | ||
- [ ] pip version: | ||
`pip -V` | ||
- [ ] Terminal/Shell: (*powershell, pwsh, Windows Terminal, WSL* etc.) | ||
|
||
**Describe the bug** | ||
A clear and concise description of what the bug is. | ||
|
||
**To Reproduce** | ||
Steps to reproduce the behavior: | ||
1. Go to '...' | ||
2. Click on '....' | ||
3. Scroll down to '....' | ||
4. See error | ||
<!-- Feel free to add more information about your environment here --> | ||
|
||
**Description** | ||
<!-- A clear and concise description of what the bug is. --> | ||
|
||
**Expected behavior** | ||
A clear and concise description of what you expected to happen. | ||
<!-- A clear and concise description of what you expected to happen. --> | ||
|
||
**Actual Behaviour:** | ||
<!-- A description of what actually happened. --> | ||
|
||
|
||
**How to Reproduce** | ||
<!-- Describe the steps to reproduce this bug. --> | ||
|
||
**Screenshots** | ||
If applicable, add screenshots to help explain your problem. | ||
1. Get package from '...' | ||
2. Then run '...' | ||
3. An error occurs. | ||
|
||
**Desktop (please complete the following information):** | ||
- OS: [e.g. iOS] | ||
- Browser [e.g. chrome, safari] | ||
- Version [e.g. 22] | ||
**Output** | ||
|
||
**Smartphone (please complete the following information):** | ||
- Device: [e.g. iPhone6] | ||
- OS: [e.g. iOS8.1] | ||
- Browser [e.g. stock browser, safari] | ||
- Version [e.g. 22] | ||
``` | ||
Paste the output of the steps above, including the commands themselves and | ||
pip's output/traceback etc. | ||
``` | ||
|
||
**Additional context** | ||
Add any other context about the problem here. | ||
If the problem is graphical in nature, please add a screenshot. | ||
<sub>(A picture is worth...)</sub> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
blank_issues_enabled: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.