Skip to content

Prepare Release 0.14.3 #236

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jul 6, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,25 @@
Changelog
=========


v0.14.3
-----------

- Update version number displayed in CLI, forgotten from previous releases.


v0.14.2
-----------

- Respect the HTTP_PROXY environment variable.


v0.14.1
-----------

- Improve netrc support with aiohttp. Also fix related bugs.


v0.14.0
-----------

Expand Down
2 changes: 1 addition & 1 deletion src/python_inspector/resolve_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

TRACE = False

__version__ = "0.14.0"
__version__ = "0.14.3"

DEFAULT_PYTHON_VERSION = settings.DEFAULT_PYTHON_VERSION
PYPI_SIMPLE_URL = settings.PYPI_SIMPLE_URL
Expand Down
323 changes: 0 additions & 323 deletions test_resolution2.py.foo

This file was deleted.

2 changes: 1 addition & 1 deletion tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,7 @@ def test_passing_of_json_pdt_and_json_flags():
def test_version_option():
options = ["--version"]
rc, stdout, stderr = run_cli(options=options)
assert "0.14.0" in stdout
assert "0.14.3" in stdout


def test_passing_of_netrc_file_that_does_not_exist():
Expand Down