Chak-Kuen Lam
Chak-Kuen Lam
**What kind of change does this PR introduce? (Bug fix, feature, docs update, ...)** Add spec for [pipx](https://github.com/pypa/pipx)
Closes #801 New issue form has a friendlier look. And I've set `blank_issues_enabled` to `true` in `config.yml` just in case someone will need to open a blank issue.
Currently, we have only one issue template for users to report issues that they are experiencing. Maybe we should add issue templates for feature requests and questions? Also, maybe we...
* [x] I have added an entry to `docs/changelog.md` ## Summary of changes Closes #687 ## Test plan Tested by running ``` pipx install-all packages.json ```
* [x] I have added an entry to `docs/changelog.md` ## Summary of changes Match pip's behaviour when package name ends with an archive extension such as `.whl`, `.tar.gz` (Treat it...
* [x] I have added an entry to `docs/changelog.md` ## Summary of changes Ship a zipapp of pipx when a new version is released. #244 ## Test plan Tested by...
* [x] I have added an entry to `docs/changelog.md` ## Summary of changes `pipx run` will now reinstall the package if exceptions are raised when trying to run the app...
Are there any plans for dropping Python 2 support? Python 2 is EOL and dropping support for it would ease maintenance and reduce complexity.
Refers to #43 Sample usage: ```python import fire class Example(object): def alpha(self): return 'alpha' def Alpha(self): return 'Alpha' def Beta(self): return 'Beta' if __name__=='__main__': fire.Fire(Example) ``` ``` $ python test.py...
Closes #76 Old behaviour: ``` SYNOPSIS __main__.py ARGS ``` New behaviour: ``` SYNOPSIS '/usr/bin/python -m sample' ARGS ```