diff --git a/pyproject.toml b/pyproject.toml index 268302614..8fa526238 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -39,7 +39,7 @@ classifiers = [ "Topic :: Software Development :: Build Tools", ] dependencies = [ - "click>=8.0.6", + "click>=8.2.0", "hatchling>=1.24.2", "httpx>=0.22.0", "hyperlink>=21.0.0", diff --git a/tests/cli/self/test_self.py b/tests/cli/self/test_self.py index cd1a4aed1..1bf8bbfaf 100644 --- a/tests/cli/self/test_self.py +++ b/tests/cli/self/test_self.py @@ -4,4 +4,4 @@ def test(hatch): result = hatch(os.environ['PYAPP_COMMAND_NAME']) - assert result.exit_code == 0, result.output + assert result.exit_code == 2, result.output