Skip to content

Commit 96094e9

Browse files
committed
V6.0.2
1 parent 9045da2 commit 96094e9

File tree

3 files changed

+20
-19
lines changed

3 files changed

+20
-19
lines changed

.github/workflows/workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
run: uv python install ${{ matrix.python-version }}
2929

3030
- name: Install dependencies
31-
run: uv sync --all-extras
31+
run: uv sync --group test
3232
shell: bash
3333

3434
- name: Run tests with coverage

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,14 @@ dependencies = [
3737
Homepage = "https://pypi.org/project/pythonLogs"
3838
Repository = "https://github.com/ddc/pythonLogs"
3939

40-
[project.optional-dependencies]
40+
[dependency-groups]
4141
test = [
4242
"psutil>=7.2.2",
43-
"pytest>=9.0.2",
43+
"pytest-cov>=7.0.0",
4444
"pytest-cov>=7.0.0",
4545
]
4646
dev = [
47-
"pythonLogs[test]",
47+
{include-group = "test"},
4848
"black>=26.1.0",
4949
"poethepoet>=0.40.0",
5050
"ruff>=0.14.14",
@@ -58,7 +58,7 @@ packages = ["pythonLogs"]
5858

5959
[tool.poe.tasks]
6060
build = "uv build --wheel"
61-
updatedev.shell = "uv lock && uv sync --no-install-project --all-extras"
61+
updatedev.shell = "uv lock && uv sync --no-install-project --all-groups"
6262
linter.shell = "uv run ruff check --fix . && uv run black ."
6363
profile = "uv run python -m cProfile -o cprofile.prof -m pytest"
6464
test = "uv run pytest"

uv.lock

Lines changed: 15 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)