From 5c3235edfd79e1f2160ad6ff00a73d6540f4db72 Mon Sep 17 00:00:00 2001 From: Charlie Denton Date: Mon, 13 May 2024 12:31:32 +0100 Subject: [PATCH] Add missing release requirement Before this change, we saw an error in CI when we tried to make a release: ModuleNotFoundError: No module named 'packaging' --- pyproject.toml | 2 ++ requirements/release.txt | 1 + 2 files changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index a10a44c..5bd10b6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -63,6 +63,7 @@ pytest-in-tox = [ "pytest>=8.2.0", ] release = [ + "packaging>=24.0", "rich>=13.7.1", "tomli >= 1.1.0 ; python_version < '3.11'", "typer>=0.12.3", @@ -90,6 +91,7 @@ dev = [ "pre-commit>=3.7.0", # CLI utils + "packaging>=24.0", "rich>=13.7.1", "tomli >= 1.1.0 ; python_version < '3.11'", "typer>=0.12.3", diff --git a/requirements/release.txt b/requirements/release.txt index a343bb8..d5ae62a 100644 --- a/requirements/release.txt +++ b/requirements/release.txt @@ -6,6 +6,7 @@ markdown-it-py==3.0.0 # via rich mdurl==0.1.2 # via markdown-it-py +packaging==24.0 pygments==2.18.0 # via rich rich==13.7.1