File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 11Changelog
22=========
33
4+ v0.14.4
5+ -----------
6+
7+ - Cleanup requirement string to avoid packvers parsing issues https://github.com/aboutcode-org/python-inspector/pull/244
8+ - Fix resolution issues for pre-release versions https://github.com/aboutcode-org/python-inspector/pull/248
49
510v0.14.3
611-----------
Original file line number Diff line number Diff line change 2121
2222TRACE = False
2323
24- __version__ = "0.14.3 "
24+ __version__ = "0.14.4 "
2525
2626DEFAULT_PYTHON_VERSION = settings .DEFAULT_PYTHON_VERSION
2727PYPI_SIMPLE_URL = settings .PYPI_SIMPLE_URL
Original file line number Diff line number Diff line change 2020from commoncode .testcase import FileDrivenTesting
2121
2222from python_inspector .resolve_cli import resolve_dependencies
23+ from python_inspector .resolve_cli import __version__
2324
2425# Used for tests to regenerate fixtures with regen=True
2526REGEN_TEST_FIXTURES = os .getenv ("PYINSP_REGEN_TEST_FIXTURES" , False )
@@ -544,7 +545,7 @@ def test_passing_of_json_pdt_and_json_flags():
544545def test_version_option ():
545546 options = ["--version" ]
546547 rc , stdout , stderr = run_cli (options = options )
547- assert "0.14.3" in stdout
548+ assert __version__ in stdout
548549
549550
550551def test_passing_of_netrc_file_that_does_not_exist ():
You can’t perform that action at this time.
0 commit comments