Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
run: uv sync --locked --all-groups

- name: Run black
Copy link

Copilot AI Mar 24, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This step is still labeled “Run black” but it now runs ruff format --check. Renaming the step to match the actual command will make CI output clearer when failures occur.

Suggested change
- name: Run black
- name: Run ruff format

Copilot uses AI. Check for mistakes.
run: uv run black temba_client
run: uv run ruff format --check temba_client

- name: Run ruff
run: uv run ruff check temba_client
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,8 @@ Repository = "http://github.com/rapidpro/rapidpro-python"
[dependency-groups]
dev = [
"coverage>=5.3,<6",
"ruff>=0.14.0,<0.15",
"ruff>=0.15.7,<0.16",
"isort>=5.10.1,<6",
"black>=24.3.0,<27",
"nose2>=0.12.0,<0.13",
]
Comment on lines 24 to 30
Copy link

Copilot AI Mar 24, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You removed black from the dev dependency group, but pyproject.toml still contains a [tool.black] configuration section. That config is now effectively dead/unused and can confuse contributors; either remove the [tool.black] section or re-add black as a dev dependency if it’s still intended to be supported.

Copilot uses AI. Check for mistakes.

Expand Down
Loading
Loading