Skip to content

Commit

Permalink
💚
Browse files Browse the repository at this point in the history
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
E3V3A committed Jan 23, 2022
1 parent 6e8e87d commit 274198c
Show file tree
Hide file tree
Showing 12 changed files with 396 additions and 212 deletions.
45 changes: 0 additions & 45 deletions .github/ISSUE_TEMPLATE/bug_report-md.md

This file was deleted.

67 changes: 44 additions & 23 deletions .github/ISSUE_TEMPLATE/bug_report.md
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>
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
blank_issues_enabled: false
16 changes: 13 additions & 3 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,21 @@
v1.0.4, 2022-01-22 -- New Release and bug fixes:

* Fixed PR #11 for venv exception handling
* Fixed pyOSinfo uname issue.
* Fixed ANSI color capability check in is_posix()
(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
* Changed Shebangs from 'python3' to 'python'
* Updated README
* Bump version v1.0.4

v1.0.4, 2022-01-22 -- Sync of old work

* Synchronisation of previous work (2019-02-15), not pushed to repo.
* Synchronisation of previous work (2019-02-15) not pushed to repo.

New Release and bug fixes:

* Added __main__ function coding style
* Added __author__ etc.
* Added new search tool: pip-search
Expand All @@ -14,7 +25,6 @@ New Release and bug fixes:
* Removed redundant whitespace not affecting readability
* Fixed wrong date in CHANGES.txt


v1.0.3, 2019-02-08 -- New Release and bug fixes:

* Fixed path search mechnaism for full Linux support. Fixed #6
Expand Down
12 changes: 9 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ A simple *Python3* CLI tool to show the installation or modification times of al

| STATUS: | Version | Date | Maintained? |
|:------- |:------- |:---- |:----------- |
| Working | `1.0.3` | 2019-02-08 | YES |
| Working | `1.0.4` | 2022-01-22 | YES |

---

Expand Down Expand Up @@ -93,6 +93,10 @@ for a given file using python's `os.stat` info.
* A script called **`pyOSinfo`**, that will print a number of *os, system*
and *platform* variables, as seen by your Python interpreter.

* **`NEW`** A script called (hold your breath!) **`pip-search`**, that will download and
search all of the PyPi package database for packages matching your search criteria.
However, for colored and sexy package searches, I recommend using [pip_search](https://github.com/victorgarric/pip_search).
Also, for cool powershell wrapper of pip-search, read [this](https://github.com/E3V3A/pip-date/issues/17#issuecomment-1019325517).

**Q:** *Will I continue to support this tool?*

Expand All @@ -105,6 +109,7 @@ something just send me a PR, or at the very least, a detailed code snippet of wh


* [requests](https://github.com/requests/requests) - used by `pip-describe` to get PyPI info
* [lxml](https://github.com/lxml/lxml) - used by `pip-search` to parse html from PyPI

and what you already have:
* [Python3](https://www.python.org/)
Expand Down Expand Up @@ -203,11 +208,12 @@ For all the gory details, see:

---

#### Recommeded Similar Tools:
#### Recommeded or Similar Tools:

- **[pip-check](https://github.com/bartTC/pip-check/)** - Check you pip package update status with nice ANSI colored CLI
- **[pip-chill](https://github.com/rbanffy/pip-chill)** - Lists only the dependencies (or not) of installed packages

- **[pip_search](https://github.com/victorgarric/pip_search)** - Victor's amazing pip search replacement
- **[venvlink](https://github.com/np-8/venvlink)** - Using virtual environments outside of the project folder, like a boss!
---

#### Bugs and Warnings
Expand Down
Loading

0 comments on commit 274198c

Please sign in to comment.