Skip to content

Commit 2f22945

Browse files
authored
Delete Pipfile from root since uv is now recommended over pipenv (#1445)
Also: - Delete unused readme_files directory - Edit MANIFEST.in to reflect current reality - Minor updates to ruff config in pyproject.toml to remove outdated stuff
1 parent 491e559 commit 2f22945

File tree

5 files changed

+4
-149
lines changed

5 files changed

+4
-149
lines changed

MANIFEST.in

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
include LICENSE README.md CHANGELOG.md noxfile.py tasks.py Pipfile
1+
include LICENSE README.md CHANGELOG.md mkdocs.yml pyproject.toml tasks.py
22
recursive-include examples *
33
recursive-include tests *
44
recursive-include docs *
55
prune .github
6-
prune docs/_build
7-
prune docs/.nox
8-
exclude .github .gitignore azure-pipelines.yml
6+
prune build
7+
exclude .github .gitignore .readthedocs.yaml
98
global-exclude htmlcov/** .coverage* __pycache__/** .gitignore

Pipfile

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

pyproject.toml

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

readme_files/shout_out.csv

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

readme_files/shoutout.txt

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

0 commit comments

Comments
 (0)