Skip to content
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

Remove accidental print #22

Merged
merged 1 commit into from
Jan 10, 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
1 change: 1 addition & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
- uses: astral-sh/setup-uv@v5
- run: uv python install 3.13
- run: uv run ruff format --check
- run: uv run ruff check
isort:
runs-on: ubuntu-latest
steps:
Expand Down
6 changes: 6 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
2.5 (2025-01-09)
++++++++++++++++

* Remove accidentally added debug print.
* Add ruff linting and print checking.

2.4 (2025-01-09)
++++++++++++++++

Expand Down
1 change: 0 additions & 1 deletion django_cmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ def configure():

# Load from pyproject.toml first
if pyproject := locate():
print(pyproject.open().readlines())
with pyproject.open("rb") as f:
config = tomllib.load(f)
settings_module = (
Expand Down
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,6 @@ code = """
import django_cmd
django_cmd.patch_django()
"""

[tool.ruff.lint]
select = ["T201"]
Loading