Skip to content

Commit 8792bb3

Browse files
authored
Remove bench.py (no relevant basis for comparison, to be redone later)
1 parent d5afa81 commit 8792bb3

File tree

4 files changed

+30
-294
lines changed

4 files changed

+30
-294
lines changed

.github/actions/environment/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ runs:
1616

1717
- name: Install Dependencies
1818
shell: bash
19-
run: uv sync --no-group bench
19+
run: uv sync

bench.py

Lines changed: 0 additions & 154 deletions
This file was deleted.

pyproject.toml

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,6 @@ requires = ["hatchling"]
33
build-backend = "hatchling.build"
44

55
[dependency-groups]
6-
bench = [
7-
"tabulate",
8-
"typer",
9-
"types-tabulate",
10-
]
116
dev = [
127
"hatch",
138
"mypy",
@@ -17,8 +12,6 @@ dev = [
1712
docs = [
1813
"mkdocs",
1914
"mkdocs-material",
20-
"pydantic-settings",
21-
"uvloop",
2215
]
2316
test = [
2417
"fastapi",
@@ -32,7 +25,7 @@ test = [
3225
[project]
3326
name = "python-injection"
3427
version = "0.0.0"
35-
description = "Fast and easy dependency injection framework."
28+
description = "Dead-simple dependency injection framework for Python."
3629
license = "MIT"
3730
license-files = ["LICENSE"]
3831
readme = "docs/index.md"
@@ -78,7 +71,7 @@ exclude_lines = [
7871
]
7972

8073
[tool.coverage.run]
81-
omit = ["bench.py", "typing_checks/*"]
74+
omit = ["typing_checks/*"]
8275

8376
[tool.hatch.build]
8477
skip-excluded-dirs = true
@@ -96,7 +89,6 @@ disallow_subclassing_any = true
9689
disallow_untyped_defs = true
9790
exclude = [
9891
"tests/",
99-
"bench.py",
10092
"conftest.py",
10193
]
10294
follow_imports = "silent"
@@ -136,5 +128,5 @@ ignore = ["N818"]
136128
fixable = ["ALL"]
137129

138130
[tool.uv]
139-
default-groups = ["bench", "dev", "docs", "test"]
131+
default-groups = ["dev", "docs", "test"]
140132
package = true

0 commit comments

Comments
 (0)