Skip to content

Commit 2db91c7

Browse files
authored
chore(pre-commit): bump versions and re-run on all-files (#206)
1 parent 8a7f6d9 commit 2db91c7

11 files changed

Lines changed: 23 additions & 27 deletions

File tree

.github/workflows/ruff.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
uses: actions/checkout@v4
2121

2222
- name: Install dependencies
23-
run: pip install ruff==0.14.10
23+
run: pip install ruff==0.14.14
2424

2525
- name: Fail if we have any style errors
2626
run: ruff check --output-format=github

.idea/runConfigurations/pytest___.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations/pytest__users.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations/runserver.xml

Lines changed: 16 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ repos:
1010
- id: end-of-file-fixer
1111

1212
- repo: https://github.com/astral-sh/ruff-pre-commit
13-
rev: v0.14.10
13+
rev: v0.14.14
1414
hooks:
1515
- id: ruff-format
1616
- id: ruff-check

compose/production/django/start

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,3 @@ python /app/manage.py collectstatic --noinput
99

1010

1111
/usr/local/bin/gunicorn config.asgi --bind 0.0.0.0:5000 --chdir=/app -k uvicorn.workers.UvicornWorker
12-

gobgp_config/gobgp.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[global.config]
22
as = 1234
3-
router-id = "1.1.1.1"
3+
router-id = "1.1.1.1"

requirements/local.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ flake8-isort==4.1.1 # https://github.com/gforcada/flake8-isort
3131
black==22.3.0 # https://github.com/psf/black
3232
pylint-django==2.5.3 # https://github.com/PyCQA/pylint-django
3333
pylint-celery==0.3 # https://github.com/PyCQA/pylint-celery
34-
pre-commit==2.19.0 # https://github.com/pre-commit/pre-commit
34+
pre-commit==4.5.1 # https://github.com/pre-commit/pre-commit
3535

3636
# Django
3737
# ------------------------------------------------------------------------------

requirements/production.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,3 @@ psycopg2==2.9.3 # https://github.com/psycopg/psycopg2
88
# Django
99
# ------------------------------------------------------------------------------
1010
django-anymail==8.6 # https://github.com/anymail/django-anymail
11-

scram/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
"""The Django project for Security Catch and Release Automation Manager (SCRAM)."""
22

33
__version__ = "1.1.1"
4-
__version_info__ = tuple(int(num) if num.isdigit() else num for num in __version__.replace("-", ".", 1).split("."))
4+
__version_info__ = tuple(int(num) if num.isdigit() else num for num in __version__.replace("-", ".", 1).split(".")) # noqa: RUF067

0 commit comments

Comments
 (0)