Skip to content

Commit

Permalink
Update changelog and remove line ending from test assert
Browse files Browse the repository at this point in the history
  • Loading branch information
chrysle committed Oct 24, 2023
1 parent aabd6a6 commit 51a010b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## dev

- Drop `setuptools` and `wheel` from the shared libraries
- Drop `setuptools` and `wheel` from the shared libraries. This results in less time consumption when the libraries are
automatically upgraded.
- Allow running `pip` with `pipx run`
- Make usage message in `pipx run` show `package_or_url`, so extra will be printed out as well
- Add `--force-reinstall` to pip arguments when `--force` was passed
Expand Down
2 changes: 1 addition & 1 deletion tests/test_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -340,4 +340,4 @@ def test_run_with_windows_python_version(caplog, pipx_temp_env, tmp_path):
def test_run_shared_lib_as_app(pipx_temp_env, monkeypatch, capfd):
run_pipx_cli_exit(["run", "pip", "--help"])
captured = capfd.readouterr()
assert "pip <command> [options]\n" in captured.out
assert "pip <command> [options]" in captured.out

0 comments on commit 51a010b

Please sign in to comment.