Migrate to pyproject.toml and replace flake8/isort with ruff#17
Merged
Migrate to pyproject.toml and replace flake8/isort with ruff#17
Conversation
- Replace setup.py + setup.cfg with pyproject.toml (PEP 517/621) - Replace flake8 + isort with ruff; configure via pyproject.toml - Update pre-commit hooks to use ruff - Fix import ordering violations flagged by ruff Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- Consolidate ruff and mypy tool config to single sections in pyproject.toml - Remove orphaned noqa: E401 comment from foo.py - Update ruff-pre-commit from v0.5.7 to v0.15.10 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- Fold project.urls, project.scripts, project.optional-dependencies into [project] using dotted keys - Bump version to 0.4.6 - Remove stale isort:skip_file directive from foo.py Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
24c1e5a to
f6f2479
Compare
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
soup.find('table') returns Tag | None; assert not None before calling find_all.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
setup.py+setup.cfgwithpyproject.toml(PEP 517/621)flake8+isortwithrufffor linting and import sorting; configured viapyproject.toml(no separate.flake8file needed)ruffandruff-formatTest plan
ruff check .passespip install .[dev]installs correctly🤖 Generated with Claude Code