Skip to content

Commit

Permalink
update ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
seebi committed May 22, 2024
1 parent 7448ddb commit 13aad13
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p

- coverage report does some advanced exclusion:
- https://coverage.readthedocs.io/en/7.5.0/excluding.html#advanced-exclusion
- update dependencies
- update dependencies, esp. ruff

### Security

Expand Down
1 change: 1 addition & 0 deletions src/cmem_plugin_{{ project_slug }}/example_transform.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""lifetime(age) transform plugin module"""

import datetime
from collections.abc import Sequence
from datetime import date
Expand Down
1 change: 1 addition & 0 deletions src/cmem_plugin_{{ project_slug }}/example_workflow.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Random values workflow plugin module"""

import uuid
from collections.abc import Sequence
from secrets import token_urlsafe
Expand Down
2 changes: 1 addition & 1 deletion src/pyproject.toml.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ pytest-cov = "^4.1.0"
pytest-dotenv = "^0.5.2"
pytest-html = "^4.1.1"
pytest-memray = { version = "^1.6.0", markers = "platform_system != 'Windows'" }
ruff = "^0.1.15"
ruff = "^0.4.4"
safety = "^1.10.3"

[build-system]
Expand Down
1 change: 1 addition & 0 deletions src/tests/test_example.py.jinja
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Plugin tests."""

import io

import pytest
Expand Down
1 change: 1 addition & 0 deletions src/tests/utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Testing utilities."""

import os
from typing import ClassVar

Expand Down

0 comments on commit 13aad13

Please sign in to comment.