Skip to content

Commit

Permalink
Pre-release-0.15.6.
Browse files Browse the repository at this point in the history
  • Loading branch information
itsayellow committed Oct 17, 2020
1 parent 27e1f8a commit 0a04b48
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 13 deletions.
3 changes: 1 addition & 2 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
dev
0.15.6.0

- [docs] Update license
- [bugfix] Fixed regression in list, inject, upgrade, reinstall-all commands when suffixed packages are used.
Expand All @@ -7,7 +7,6 @@ dev
- Added support for user-defined default python interpreter via new PIPX_DEFAULT_PYTHON. Helpful for use with pyenv among other uses.
- [bugfix] Fixed bug where extras were ignored with a PEP 508 package specification with a URL.


0.15.5.1

- [bugfix] Fixed regression of 0.15.5.0 which erroneously made installing from a local path with package extras not possible.
Expand Down
16 changes: 10 additions & 6 deletions docs/docs.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ will be installed to $PIPX_HOME/venvs.
PIPX_BIN_DIR: Overrides location of app installations. Apps are symlinked
or copied here.
USE_EMOJI: Override emoji behavior. Default value varies based on platform.
PIPX_DEFAULT_PYTHON: Overrides default python used for commands.
optional arguments:
-h, --help show this help message and exit
Expand All @@ -48,11 +49,8 @@ subcommands:
directory (experimental).
runpip Run pip in an existing pipx-managed Virtual
Environment
ensurepath Ensure directory where pipx stores apps is in your
PATH environment variable. Also if pipx was installed
via `pip install --user`, ensure pipx itself is in
your PATH. Note that running this may modify your
shell's configuration file(s) such as '~/.bashrc'.
ensurepath Ensure directories necessary for pipx operation are in
your PATH environment variable.
completions Print instructions on enabling shell completions for
pipx
Expand Down Expand Up @@ -82,6 +80,7 @@ packages. 'sudo' is not required to do this.
pipx install PACKAGE_NAME
pipx install --python PYTHON PACKAGE_NAME
pipx install VCS_URL
pipx install ./LOCAL_PATH
pipx install ZIP_FILE
pipx install TAR_GZ_FILE
Expand All @@ -94,6 +93,10 @@ and can be overridden by setting the environment variable `PIPX_HOME`
The default app location is ~/.local/bin and can be
overridden by setting the environment variable `PIPX_BIN_DIR`.
The default python executable used to install a package is
~/git/pipx-pipxproject/.nox/docs/bin/python and can be overridden by setting the environment
variable `PIPX_DEFAULT_PYTHON`.
positional arguments:
package_spec package name or pip installation spec
Expand All @@ -104,7 +107,8 @@ optional arguments:
--force, -f Modify existing virtual environment and files in
PIPX_BIN_DIR
--suffix SUFFIX Optional suffix for virtual environment and executable
names
names. NOTE: The suffix feature is experimental and
subject to change.
--python PYTHON The Python executable used to create the Virtual
Environment and run the associated app/apps. Must be
v3.5+.
Expand Down
8 changes: 4 additions & 4 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ test:
pipx run nox

publish:
pipx run nox -s publish-3.7
pipx run nox -s publish

docs:
pipx run nox -s docs-3.7 -r
pipx run nox -s docs -r

watch_docs:
pipx run nox -s watch_docs-3.7 -r
pipx run nox -s watch_docs -r

publish_docs:
pipx run nox -s publish_docs-3.7 -r
pipx run nox -s publish_docs -r
2 changes: 1 addition & 1 deletion src/pipx/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version_info__ = (0, 15, 5, 1, "dev0")
__version_info__ = (0, 15, 6, 0)
__version__ = ".".join(str(i) for i in __version_info__)

0 comments on commit 0a04b48

Please sign in to comment.