Skip to content

Commit 0a04b48

Browse files
committed
Pre-release-0.15.6.
1 parent 27e1f8a commit 0a04b48

File tree

4 files changed

+16
-13
lines changed

4 files changed

+16
-13
lines changed

docs/changelog.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
dev
1+
0.15.6.0
22

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

10-
1110
0.15.5.1
1211

1312
- [bugfix] Fixed regression of 0.15.5.0 which erroneously made installing from a local path with package extras not possible.

docs/docs.md

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ will be installed to $PIPX_HOME/venvs.
2424
PIPX_BIN_DIR: Overrides location of app installations. Apps are symlinked
2525
or copied here.
2626
USE_EMOJI: Override emoji behavior. Default value varies based on platform.
27+
PIPX_DEFAULT_PYTHON: Overrides default python used for commands.
2728
2829
optional arguments:
2930
-h, --help show this help message and exit
@@ -48,11 +49,8 @@ subcommands:
4849
directory (experimental).
4950
runpip Run pip in an existing pipx-managed Virtual
5051
Environment
51-
ensurepath Ensure directory where pipx stores apps is in your
52-
PATH environment variable. Also if pipx was installed
53-
via `pip install --user`, ensure pipx itself is in
54-
your PATH. Note that running this may modify your
55-
shell's configuration file(s) such as '~/.bashrc'.
52+
ensurepath Ensure directories necessary for pipx operation are in
53+
your PATH environment variable.
5654
completions Print instructions on enabling shell completions for
5755
pipx
5856
@@ -82,6 +80,7 @@ packages. 'sudo' is not required to do this.
8280
pipx install PACKAGE_NAME
8381
pipx install --python PYTHON PACKAGE_NAME
8482
pipx install VCS_URL
83+
pipx install ./LOCAL_PATH
8584
pipx install ZIP_FILE
8685
pipx install TAR_GZ_FILE
8786
@@ -94,6 +93,10 @@ and can be overridden by setting the environment variable `PIPX_HOME`
9493
The default app location is ~/.local/bin and can be
9594
overridden by setting the environment variable `PIPX_BIN_DIR`.
9695
96+
The default python executable used to install a package is
97+
~/git/pipx-pipxproject/.nox/docs/bin/python and can be overridden by setting the environment
98+
variable `PIPX_DEFAULT_PYTHON`.
99+
97100
positional arguments:
98101
package_spec package name or pip installation spec
99102
@@ -104,7 +107,8 @@ optional arguments:
104107
--force, -f Modify existing virtual environment and files in
105108
PIPX_BIN_DIR
106109
--suffix SUFFIX Optional suffix for virtual environment and executable
107-
names
110+
names. NOTE: The suffix feature is experimental and
111+
subject to change.
108112
--python PYTHON The Python executable used to create the Virtual
109113
Environment and run the associated app/apps. Must be
110114
v3.5+.

makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ test:
1010
pipx run nox
1111

1212
publish:
13-
pipx run nox -s publish-3.7
13+
pipx run nox -s publish
1414

1515
docs:
16-
pipx run nox -s docs-3.7 -r
16+
pipx run nox -s docs -r
1717

1818
watch_docs:
19-
pipx run nox -s watch_docs-3.7 -r
19+
pipx run nox -s watch_docs -r
2020

2121
publish_docs:
22-
pipx run nox -s publish_docs-3.7 -r
22+
pipx run nox -s publish_docs -r

src/pipx/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version_info__ = (0, 15, 5, 1, "dev0")
1+
__version_info__ = (0, 15, 6, 0)
22
__version__ = ".".join(str(i) for i in __version_info__)

0 commit comments

Comments
 (0)