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
4 changes: 2 additions & 2 deletions .github/workflows/pull_request_automation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,6 @@ jobs:
"BROKER_URL": "amqp://guest:guest@rabbitmq:5672",
}
python_versions: >-
["3.10"]
["3.13"]
max_timeout: 15
ubuntu_version: 22.04
ubuntu_version: 24.04
2 changes: 1 addition & 1 deletion greedybear/cronjobs/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from datetime import datetime, timedelta

from django.conf import settings
from elasticsearch_dsl import Q, Search
from elasticsearch8.dsl import Q, Search
from greedybear.settings import EXTRACTION_INTERVAL, LEGACY_EXTRACTION


Expand Down
2 changes: 1 addition & 1 deletion greedybear/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from datetime import timedelta

from django.core.management.utils import get_random_secret_key
from elasticsearch import Elasticsearch
from elasticsearch8 import Elasticsearch

BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
BASE_STATIC_PATH = os.path.join(BASE_DIR, "static/")
Expand Down
2 changes: 1 addition & 1 deletion requirements/project-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
celery==5.5.3

# if you change this, update the documentation
elasticsearch-dsl==8.18.0
elasticsearch8==8.19.2

Django==5.2.7
djangorestframework==3.16.1
Expand Down
Loading