Skip to content

Commit 166ac66

Browse files
committed
V6.0.3
1 parent bba3fa5 commit 166ac66

4 files changed

Lines changed: 31 additions & 34 deletions

File tree

.github/workflows/workflow.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,7 @@ jobs:
4242
run: uv python install ${{ matrix.python-version }}
4343

4444
- name: Install dependencies
45-
run: uv sync --locked --all-extras --dev
46-
shell: bash
45+
run: uv sync --locked --all-extras --group dev
4746

4847
- name: Run tests with coverage
4948
uses: nick-fields/retry@v3

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -355,11 +355,9 @@ Must have [UV](https://uv.run/docs/getting-started/installation) installed.
355355

356356
## Create DEV Environment and Running Tests
357357

358-
> **Note:** All poe tasks automatically run ruff linter along with Black formatting
359-
360358
```shell
361359
uv sync --all-extras --all-groups
362-
poe test
360+
poe tests
363361
```
364362

365363

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ packages = ["pythonLogs"]
1313

1414
[project]
1515
name = "pythonLogs"
16-
version = "6.0.2"
16+
version = "6.0.3"
1717
description = "High-performance Python logging library with file rotation and optimized caching for better performance"
1818
urls.Repository = "https://github.com/ddc/pythonLogs"
1919
urls.Homepage = "https://pypi.org/project/pythonLogs"
@@ -54,16 +54,16 @@ dev = [
5454
"psutil>=7.2.2",
5555
"pytest-cov>=7.0.0",
5656
"poethepoet>=0.41.0",
57-
"ruff>=0.15.0",
57+
"ruff>=0.15.1",
5858
"black>=26.1.0",
5959
]
6060

6161
[tool.poe.tasks]
6262
linter.shell = "uv run ruff check --fix . && uv run black ."
63-
profile.sequence = ["linter", {shell = "uv run python -m cProfile -o cprofile_unit.prof -m pytest --no-cov"}]
64-
test.sequence = ["linter", {shell = "uv run pytest"}]
63+
profile = "uv run python -m cProfile -o cprofile_unit.prof -m pytest --no-cov"
64+
tests = "uv run pytest"
6565
updatedev.sequence = ["linter", {shell = "uv lock --upgrade && uv sync --all-extras --group dev"}]
66-
build.sequence = ["updatedev", "test", {shell = "uv build --wheel"}]
66+
build.sequence = ["updatedev", "tests", {shell = "uv build --wheel"}]
6767

6868
[tool.pytest.ini_options]
6969
addopts = "-v --cov --cov-report=term --cov-report=xml --junitxml=junit.xml"

uv.lock

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

0 commit comments

Comments
 (0)