Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/ruff.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
uses: actions/checkout@v4

- name: Install dependencies
run: pip install ruff==0.14.10
run: pip install ruff==0.14.14

- name: Fail if we have any style errors
run: ruff check --output-format=github
Expand Down
2 changes: 1 addition & 1 deletion .idea/runConfigurations/pytest___.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/runConfigurations/pytest__users.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

32 changes: 16 additions & 16 deletions .idea/runConfigurations/runserver.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repos:
- id: end-of-file-fixer

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.14.10
rev: v0.14.14
hooks:
- id: ruff-format
- id: ruff-check
Expand Down
1 change: 0 additions & 1 deletion compose/production/django/start
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,3 @@ python /app/manage.py collectstatic --noinput


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

2 changes: 1 addition & 1 deletion gobgp_config/gobgp.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[global.config]
as = 1234
router-id = "1.1.1.1"
router-id = "1.1.1.1"
2 changes: 1 addition & 1 deletion requirements/local.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ flake8-isort==4.1.1 # https://github.com/gforcada/flake8-isort
black==22.3.0 # https://github.com/psf/black
pylint-django==2.5.3 # https://github.com/PyCQA/pylint-django
pylint-celery==0.3 # https://github.com/PyCQA/pylint-celery
pre-commit==2.19.0 # https://github.com/pre-commit/pre-commit
pre-commit==4.5.1 # https://github.com/pre-commit/pre-commit

# Django
# ------------------------------------------------------------------------------
Expand Down
1 change: 0 additions & 1 deletion requirements/production.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,3 @@ psycopg2==2.9.3 # https://github.com/psycopg/psycopg2
# Django
# ------------------------------------------------------------------------------
django-anymail==8.6 # https://github.com/anymail/django-anymail

2 changes: 1 addition & 1 deletion scram/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""The Django project for Security Catch and Release Automation Manager (SCRAM)."""

__version__ = "1.1.1"
__version_info__ = tuple(int(num) if num.isdigit() else num for num in __version__.replace("-", ".", 1).split("."))
__version_info__ = tuple(int(num) if num.isdigit() else num for num in __version__.replace("-", ".", 1).split(".")) # noqa: RUF067
2 changes: 0 additions & 2 deletions scram/templates/500.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,3 @@ <h3>Looks like something went wrong!</h3>

<p>We track these errors automatically, but if the problem persists feel free to contact us. In the meantime, try refreshing.</p>
{% endblock content %}


Loading