Skip to content

Commit 960b41f

Browse files
dankkomclaude
andcommitted
chore: remove PyPI tombstone, replace flake8 with ruff in CI
compat/comexdown/ shim removed (not publishing to PyPI). Workflows now use ruff (already a dev dependency) instead of flake8. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent b4cee7e commit 960b41f

6 files changed

Lines changed: 4 additions & 100 deletions

File tree

.github/workflows/publish.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,9 @@ jobs:
2727
- name: Install dependencies
2828
run: |
2929
uv sync --all-extras
30-
- name: Lint with flake8
30+
- name: Lint with ruff
3131
run: |
32-
# stop the build if there are Python syntax errors or undefined names
33-
uv run flake8 src/comex_fetcher --count --select=E9,F63,F7,F82 --show-source --statistics
34-
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
35-
uv run flake8 src/comex_fetcher --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
32+
uv run ruff check src/comex_fetcher
3633
- name: Test with pytest
3734
run: |
3835
uv run pytest --cov=comex_fetcher

.github/workflows/tests.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,9 @@ jobs:
3030
- name: Install dependencies
3131
run: |
3232
uv sync --all-extras
33-
- name: Lint with flake8
33+
- name: Lint with ruff
3434
run: |
35-
# stop the build if there are Python syntax errors or undefined names
36-
uv run flake8 src/comex_fetcher --count --select=E9,F63,F7,F82 --show-source --statistics
37-
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
38-
uv run flake8 src/comex_fetcher --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
35+
uv run ruff check src/comex_fetcher
3936
- name: Test with pytest
4037
run: |
4138
uv run pytest --cov=comex_fetcher

compat/comexdown/LICENSE

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

compat/comexdown/README.md

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

compat/comexdown/pyproject.toml

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

compat/comexdown/src/comexdown/__init__.py

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

0 commit comments

Comments
 (0)