From b4daf33ad9b52e117863c93e42ffa3ea112eb7af Mon Sep 17 00:00:00 2001 From: lb803 <47544021+lb803@users.noreply.github.com> Date: Sat, 28 Feb 2026 14:48:16 +0000 Subject: [PATCH 1/2] rename tool.poetry.dev-dependencies to tool.poetry.group.dev.dependencies --- poetry.lock | 7 ++++--- pyproject.toml | 5 ++++- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/poetry.lock b/poetry.lock index ba8bdd3d2d..00865e72a1 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 2.2.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 2.3.2 and should not be changed by hand. [[package]] name = "aiohttp" @@ -1349,7 +1349,7 @@ files = [ [package.dependencies] attrs = ">=22.2.0" -jsonschema-specifications = ">=2023.03.6" +jsonschema-specifications = ">=2023.3.6" referencing = ">=0.28.4" rpds-py = ">=0.7.1" @@ -3602,6 +3602,7 @@ files = [ {file = "setuptools-78.1.1-py3-none-any.whl", hash = "sha256:c3a9c4211ff4c309edb8b8c4f1cbfa7ae324c4ba9f91ff254e3d305b9fd54561"}, {file = "setuptools-78.1.1.tar.gz", hash = "sha256:fcc17fd9cd898242f6b4adfaca46137a9edef687f43e6f78469692a5e70d851d"}, ] +markers = {main = "extra == \"ocr\""} [package.extras] check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1) ; sys_platform != \"cygwin\"", "ruff (>=0.8.0) ; sys_platform != \"cygwin\""] @@ -4304,4 +4305,4 @@ ocr = ["easyocr", "pillow"] [metadata] lock-version = "2.1" python-versions = ">=3.12,<3.14" -content-hash = "74157638b983480bc9c4ffbfa2f2da1669b8f5f68811f27101ab0150eea71471" +content-hash = "b376741a280e19a1ea97e5731a6e8382a443fe9a18c94b69bed5384592615165" diff --git a/pyproject.toml b/pyproject.toml index 35f6fab21b..df3af06487 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,7 +24,7 @@ issues = "https://github.com/robbrad/UKBinCollectionData/issues" requires = ["poetry-core>=1.2.0"] build-backend = "poetry.core.masonry.api" -[tool.poetry.dev-dependencies] +[tool.poetry.group.dev.dependencies] black = "*" coverage = "*" flake8 = "*" @@ -41,6 +41,9 @@ pytest-freezer = "^0.4.8" homeassistant = "^2023.10" geopandas = "^1.1.2" +[tool.poetry.group.dev] +optional = false + [tool.poetry.scripts] uk_bin_collection = "uk_bin_collection.uk_bin_collection.collect_data:run" From 7e983161768dc49b2bf809a240d486bf2ebfaec1 Mon Sep 17 00:00:00 2001 From: lb803 <47544021+lb803@users.noreply.github.com> Date: Sat, 28 Feb 2026 15:12:32 +0000 Subject: [PATCH 2/2] remove the [tool.poetry.group.dev] as coderabbitai suggested to be redundant in this case --- pyproject.toml | 3 --- 1 file changed, 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index df3af06487..76aaa4e3c0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -41,9 +41,6 @@ pytest-freezer = "^0.4.8" homeassistant = "^2023.10" geopandas = "^1.1.2" -[tool.poetry.group.dev] -optional = false - [tool.poetry.scripts] uk_bin_collection = "uk_bin_collection.uk_bin_collection.collect_data:run"