Skip to content

Commit

Permalink
v11.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
GitRon committed Oct 14, 2024
1 parent 1388491 commit 2418673
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 7 deletions.
16 changes: 14 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,23 @@ repos:
hooks:
- id: pyupgrade
args: [ --py39-plus ]
stages: [ push ]
stages: [ pre-push ]

- repo: https://github.com/adamchainz/django-upgrade
rev: 1.21.0
hooks:
- id: django-upgrade
args: [--target-version, "4.2"]
stages: [ push ]
stages: [ pre-push ]

- repo: https://github.com/adamchainz/djade-pre-commit
rev: 1.3.0
hooks:
- id: djade
args: [--target-version, "4.2"]
exclude: |
(?x)^(
charts/.*
|.*\.py
|.github/ci\.py
)$
2 changes: 1 addition & 1 deletion scripts/unix/publish_to_pypi.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
flit publish --repository testpypi
flit publish
flit publish
2 changes: 1 addition & 1 deletion scripts/windows/publish_to_pypi.ps1
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
flit publish --repository testpypi
flit publish
flit publish
4 changes: 2 additions & 2 deletions testapp/templates/403.html
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@
<body>
{% block body %}
<div class="container">
<h1>{% trans "Error 403" %}</h1>
<h1>{% translate "Error 403" %}</h1>
<div class="image-container">
<p class="error-msg">You don't have access to this page.</p>
</div>
</div>
{% endblock %}
{% endblock body %}
</body>
1 change: 0 additions & 1 deletion testapp/templates/testapp/test_template.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,3 @@
</div>
</body>
</html>

0 comments on commit 2418673

Please sign in to comment.