From 717d6aa2af9f6ad9d8dfa81a82a0413fc47a3d6e Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Mon, 10 Aug 2026 15:34:05 +0500 Subject: [PATCH] ruff: fix pyprojects using `select` instead of `extend-select` by mistake --- src/bcf/pyproject.toml | 2 +- src/bsdd/pyproject.toml | 2 +- src/ifc4d/pyproject.toml | 2 +- src/ifc5d/pyproject.toml | 2 +- src/ifccsv/pyproject.toml | 2 +- src/ifcopenshell-python/pyproject.toml | 2 +- src/ifcpatch/pyproject.toml | 2 +- src/ifcsverchok/pyproject.toml | 2 +- src/ifctester/pyproject.toml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/bcf/pyproject.toml b/src/bcf/pyproject.toml index 449f3cd1f5..2b3d0fca10 100644 --- a/src/bcf/pyproject.toml +++ b/src/bcf/pyproject.toml @@ -65,6 +65,6 @@ commands = pytest --cov --cov-report=term tests [tool.ruff] extend = "../../pyproject.toml" -lint.select = [ +lint.extend-select = [ "F401", # unused imports ] diff --git a/src/bsdd/pyproject.toml b/src/bsdd/pyproject.toml index 17fa72f37a..1bc1a04f2d 100644 --- a/src/bsdd/pyproject.toml +++ b/src/bsdd/pyproject.toml @@ -46,6 +46,6 @@ py-modules = ["bsdd","bsdd_json","type_hints"] [tool.ruff] extend = "../../pyproject.toml" -lint.select = [ +lint.extend-select = [ "F401", # unused imports ] diff --git a/src/ifc4d/pyproject.toml b/src/ifc4d/pyproject.toml index bbc101905a..c061448fd4 100644 --- a/src/ifc4d/pyproject.toml +++ b/src/ifc4d/pyproject.toml @@ -31,6 +31,6 @@ exclude = ["test*"] [tool.ruff] extend = "../../pyproject.toml" -lint.select = [ +lint.extend-select = [ "F401", # unused imports ] diff --git a/src/ifc5d/pyproject.toml b/src/ifc5d/pyproject.toml index 4a378de663..11af93b0e2 100644 --- a/src/ifc5d/pyproject.toml +++ b/src/ifc5d/pyproject.toml @@ -43,6 +43,6 @@ exclude = ["test*"] [tool.ruff] extend = "../../pyproject.toml" -lint.select = [ +lint.extend-select = [ "F401", # unused imports ] diff --git a/src/ifccsv/pyproject.toml b/src/ifccsv/pyproject.toml index c012decd23..de53241063 100644 --- a/src/ifccsv/pyproject.toml +++ b/src/ifccsv/pyproject.toml @@ -29,6 +29,6 @@ py-modules = ["ifccsv"] [tool.ruff] extend = "../../pyproject.toml" -lint.select = [ +lint.extend-select = [ "F401", # unused imports ] diff --git a/src/ifcopenshell-python/pyproject.toml b/src/ifcopenshell-python/pyproject.toml index 9ce2ea39ba..93564d4042 100644 --- a/src/ifcopenshell-python/pyproject.toml +++ b/src/ifcopenshell-python/pyproject.toml @@ -48,6 +48,6 @@ include = ["ifcopenshell*"] [tool.ruff] extend = "../../pyproject.toml" -lint.select = [ +lint.extend-select = [ "F401", # unused imports ] diff --git a/src/ifcpatch/pyproject.toml b/src/ifcpatch/pyproject.toml index e9f77a989f..4d36bc2945 100644 --- a/src/ifcpatch/pyproject.toml +++ b/src/ifcpatch/pyproject.toml @@ -36,6 +36,6 @@ exclude = ["test*"] extend = "../../pyproject.toml" [tool.ruff.lint] -select = [ +extend-select = [ "F401", # unused imports ] diff --git a/src/ifcsverchok/pyproject.toml b/src/ifcsverchok/pyproject.toml index 6952f66f06..4c8f1dfde2 100644 --- a/src/ifcsverchok/pyproject.toml +++ b/src/ifcsverchok/pyproject.toml @@ -1,5 +1,5 @@ [tool.ruff] extend = "../../pyproject.toml" -lint.select = [ +lint.extend-select = [ "F401", # unused imports ] diff --git a/src/ifctester/pyproject.toml b/src/ifctester/pyproject.toml index b522e651d5..52ba812349 100644 --- a/src/ifctester/pyproject.toml +++ b/src/ifctester/pyproject.toml @@ -45,6 +45,6 @@ exclude = ["test*"] [tool.ruff] extend = "../../pyproject.toml" -lint.select = [ +lint.extend-select = [ "F401", # unused imports ]