We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb84f57 commit 3bbd310Copy full SHA for 3bbd310
.github/workflows/test.yml
@@ -27,6 +27,7 @@ jobs:
27
run: |
28
python -m pip install --upgrade pip
29
pip install .[dev]
30
+ pip install setuptools # Ensure setuptools is available for pkg_resources
31
32
- name: Run tests and collect coverage
33
pyproject.toml
@@ -33,6 +33,7 @@ classifiers = [
]
34
dependencies = [
35
"tomli>=1.1.0; python_version < '3.11'",
36
+ "setuptools>=45.0.0",
37
38
dynamic = ["version"]
39
@@ -49,6 +50,7 @@ tracker = "https://github.com/cpp-linter/cpp-linter-hooks/issues"
49
50
tools = [
51
"clang-format==20.1.7",
52
"clang-tidy==20.1.0",
53
+ "setuptools>=45.0.0", # Required for pkg_resources in clang-tidy
54
55
56
dev = [
0 commit comments