-
Notifications
You must be signed in to change notification settings - Fork 1
Update README and remove outdated information #99
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
blooop
merged 3 commits into
main
from
claude/update-readme-cleanup-011CV3tezqW7h6y6TN1Utonb
Nov 12, 2025
Merged
Update README and remove outdated information #99
blooop
merged 3 commits into
main
from
claude/update-readme-cleanup-011CV3tezqW7h6y6TN1Utonb
Nov 12, 2025
Conversation
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
- Removed black from feature list (replaced with ruff for formatting) - Updated legacy section to remove outdated deps_rocker references - Clarified that ruff handles both formatting and linting
- Removed black from docs/intro.rst (replaced with ruff) - Updated .vscode/tasks.json autoformat task to use ruff and correct command - Removed black from .github/dependabot.yml dev-dependencies - Fixed scripts/rename_project.sh to remove non-existent deps.yaml reference
- Updated docs/intro.rst Python version badge to show 3.10-3.13 - Fixed license badge in intro.rst to use correct URL - Removed outdated flit tasks from .vscode/tasks.json - Fixed pixi version mismatch in .devcontainer/devcontainer.json (v0.48.2) - Updated CHANGELOG.md version to match pyproject.toml (0.2.0)
Reviewer's guide (collapsed on small PRs)Reviewer's GuideThis PR refines dependency update settings, cleans up outdated documentation, bumps the project version, and simplifies the rename script. Class diagram for the updated rename_project.sh scriptclassDiagram
class rename_project_sh {
+mv python_template "$1"
-mv python_template.deps.yaml "$1".deps.yaml
+find . \( -type d -name .git -prune \) -o \( -type f -not -name 'tasks.json' -not -name 'update_from_template.sh' \) -print0 | xargs -0 sed -i "s/python_template/$1/g"
}
Flow diagram for the updated dependency grouping in dependabot.ymlflowchart TD
A["dependabot.yml"] --> B["groups: dev-dependencies"]
B --> C["patterns: check-manifest"]
B --> D["patterns: pre-commit"]
B --> E["patterns: pylint"]
B --> F["patterns: pytest"]
B --> G["patterns: pytest-cov"]
B --> H["patterns: hypothesis"]
B --> I["patterns: ruff"]
B --> J["patterns: coverage"]
%% 'black' removed from patterns
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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 by Sourcery
Clean up outdated tooling references by removing black-related configurations and scripts, clarify linting setup, update legacy Docker docs, and bump project version.
Enhancements:
Documentation:
Chores: