Skip to content
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
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Changelog
=========

v0.14.4
-----------

- Cleanup requirement string to avoid packvers parsing issues https://github.com/aboutcode-org/python-inspector/pull/244
- Fix resolution issues for pre-release versions https://github.com/aboutcode-org/python-inspector/pull/248

v0.14.3
-----------
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 @@ -21,7 +21,7 @@

TRACE = False

__version__ = "0.14.3"
__version__ = "0.14.4"

DEFAULT_PYTHON_VERSION = settings.DEFAULT_PYTHON_VERSION
PYPI_SIMPLE_URL = settings.PYPI_SIMPLE_URL
Expand Down
3 changes: 2 additions & 1 deletion tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
from commoncode.testcase import FileDrivenTesting

from python_inspector.resolve_cli import resolve_dependencies
from python_inspector.resolve_cli import __version__

# Used for tests to regenerate fixtures with regen=True
REGEN_TEST_FIXTURES = os.getenv("PYINSP_REGEN_TEST_FIXTURES", False)
Expand Down Expand Up @@ -544,7 +545,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.3" in stdout
assert __version__ in stdout


def test_passing_of_netrc_file_that_does_not_exist():
Expand Down
Loading