Skip to content
Open
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/codetest-sonarcloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install -y gdal-bin
- name: Set up Python 3.13
- name: Set up Python 3.14
uses: actions/setup-python@v6
with:
python-version: '3.13'
python-version: '3.14'
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
Expand Down
4 changes: 2 additions & 2 deletions compose/backend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# ==========================================
# STAGE 1: Build
# ==========================================
FROM python:3.13-slim AS builder
FROM python:3.14-slim AS builder

# Install system dependencies + compilers needed to build Python wheels
RUN apt-get update \
Expand Down Expand Up @@ -34,7 +34,7 @@ RUN pip install --no-cache-dir -r requirements/requirements.txt
# ==========================================
# STAGE 2: Final Runtime
# ==========================================
FROM python:3.13-slim AS runner
FROM python:3.14-slim AS runner

RUN apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
Expand Down
2 changes: 1 addition & 1 deletion compose/backend/Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Use an official Python runtime as a parent image
FROM python:3.13-slim
FROM python:3.14-slim

# Install only what you need, clean up apt caches in one RUN
RUN apt-get update \
Expand Down
12 changes: 6 additions & 6 deletions src/backend/apps/event/tests/test_event_notification.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ def setUp(self):
notification_days=['Monday', 'Tuesday'],
notification_start_date=None,
notification_end_date=None,
notification_start_time=datetime.time(8, 0, tzinfo=ZoneInfo('America/Vancouver')),
notification_end_time=datetime.time(18, 0, tzinfo=ZoneInfo('America/Vancouver'))
notification_start_time=datetime.time(8, 0),
notification_end_time=datetime.time(18, 0)
)

# Case 3: Route matching date period and time frame
Expand All @@ -105,8 +105,8 @@ def setUp(self):
notification_days=[],
notification_start_date=datetime.date(2023, 10, 10),
notification_end_date=datetime.date(2023, 10, 20),
notification_start_time=datetime.time(8, 0, tzinfo=ZoneInfo('America/Vancouver')),
notification_end_time=datetime.time(18, 0, tzinfo=ZoneInfo('America/Vancouver'))
notification_start_time=datetime.time(8, 0),
notification_end_time=datetime.time(18, 0)
)

# Case 4: Route matching specific date and time frame
Expand All @@ -123,8 +123,8 @@ def setUp(self):
notification_days=[],
notification_start_date=datetime.date(2023, 10, 11),
notification_end_date=None,
notification_start_time=datetime.time(8, 0, tzinfo=ZoneInfo('America/Vancouver')),
notification_end_time=datetime.time(18, 0, tzinfo=ZoneInfo('America/Vancouver'))
notification_start_time=datetime.time(8, 0),
notification_end_time=datetime.time(18, 0)
)

# Case 5: Always active route with restricted notification types
Expand Down
8 changes: 4 additions & 4 deletions src/backend/requirements/development.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
-r ./requirements.txt

django-extensions==3.1.5
pytest==9.0.3
coverage==7.6.1
django-extensions==4.1
pytest==9.1.0
coverage==7.14.1

# Experimental packages, could be removed or moved to base later
pylint
pylint==4.0.6
68 changes: 34 additions & 34 deletions src/backend/requirements/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,38 +1,38 @@
Django==5.2.14
django-allauth==65.14.2
django-environ==0.10.0
djangorestframework==3.15.2
djangorestframework-gis==1.0
django-cors-headers==3.13.0
django-filter==23.5
drf-recaptcha==3.0.0
whitenoise==6.5.0
Django==5.2.15
django-allauth==65.18.0
django-environ==0.14.0
djangorestframework==3.17.1
djangorestframework-gis==1.2.1
django-cors-headers==4.9.0
django-filter==25.2
drf-recaptcha==4.0.3
whitenoise==6.12.0
httpx==0.28.1
huey==2.6.0
markdown==3.8.1
psycopg==3.1.9
redis==4.5.5
wagtail==7.4.1
wagtail-modeladmin==2.2.0
django-email-log==1.4.0
pyodbc==5.2.0
boto3==1.39.10
aio-pika==9.5.5
pydantic==2.11.7
pillow==12.2.0
timezonefinder==8.2.1
pytz==2025.2
click==8.2.1
aiofiles==24.1.0
huey==3.2.1
markdown==3.10.2
psycopg==3.3.4
redis==8.0.1
wagtail==7.4.2
wagtail-modeladmin==2.4.0
django-email-log==1.5.0
pyodbc==5.3.0
boto3==1.43.52
aio-pika==10.0.1
pydantic==2.13.4
pillow==12.3.0
timezonefinder==8.2.5
pytz==2026.2
click==8.4.2
aiofiles==25.1.0
zipstream==1.1.4
drf-spectacular==0.28.0
drf-spectacular-sidecar==2025.9.1
mssql-django==1.6
django-debug-toolbar==6.1.0
django-prometheus==2.4.1
django-redis==6.0.0
PyJWT==2.12.0
cryptography==46.0.7
drf-spectacular==0.30.0
drf-spectacular-sidecar==2026.7.1
mssql-django==1.7.3
django-debug-toolbar==7.0.0
django-prometheus==2.5.0
django-redis==7.0.0
PyJWT==2.13.0
cryptography==49.0.0
django-http-compression[brotli]==1.4.0
kubernetes==36.0.1
kubernetes==36.0.3
gunicorn==26.0.0
Loading