Skip to content

Minor cleanup of files at the root level #1445

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
merged 1 commit into from
Jun 11, 2025
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
7 changes: 3 additions & 4 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
include LICENSE README.md CHANGELOG.md noxfile.py tasks.py Pipfile
include LICENSE README.md CHANGELOG.md mkdocs.yml pyproject.toml tasks.py
recursive-include examples *
recursive-include tests *
recursive-include docs *
prune .github
prune docs/_build
prune docs/.nox
exclude .github .gitignore azure-pipelines.yml
prune build
exclude .github .gitignore .readthedocs.yaml
global-exclude htmlcov/** .coverage* __pycache__/** .gitignore
33 changes: 0 additions & 33 deletions Pipfile

This file was deleted.

4 changes: 1 addition & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ select = [
"ERA", # eradicate (warn about commented-out code)
"EXE", # flake8-executable (warn about files with a shebang present that aren't executable or vice versa)
"F", # Pyflakes (a bunch of common warnings for things like unused imports, imports shadowed by variables, etc)
"FA", # flake8-future-annotations (warn if certain from __future__ imports are used but missing)
# "FA", # flake8-future-annotations (warn if certain from __future__ imports are used but missing)
# "FAST", # FastAPI specific warnings
# "FBT", # flake8-boolean-trap (force all boolean arguments passed to functions to be keyword arguments and not positional)
"FIX", # flake8-fixme (warn about lines containing FIXME, TODO, XXX, or HACK)
Expand Down Expand Up @@ -233,7 +233,6 @@ ignore = [
"E111", # Conflicts with ruff format
"E114", # Conflicts with ruff format
"E117", # Conflicts with ruff format
"FA100", # Adding from __future__ import annotations screws up cmd2 because of how use inspect to validate type annotations at runtime
"ISC002", # Conflicts with ruff format
"Q000", # Conflicts with ruff format
"Q001", # Conflicts with ruff format
Expand All @@ -243,7 +242,6 @@ ignore = [
"TRY003", # Avoid specifying long messages outside the exception class (force custom exceptions for everything)
"UP007", # Use X | Y for type annotations (requires Python 3.10+)
"UP017", # Use datetime.UTC alias (requires Python 3.11+)
"UP036", # Version block is outdated for minimum Python version (requires ruff target_version set to minimum supported)
"UP038", # Use X | Y in {} call instead of (X, Y) - deprecated due to poor performance (requires Python 3.10+)
"W191", # Conflicts with ruff format
]
Expand Down
14 changes: 0 additions & 14 deletions readme_files/shout_out.csv

This file was deleted.

95 changes: 0 additions & 95 deletions readme_files/shoutout.txt

This file was deleted.

Loading