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/front-end-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Set up Python version
uses: actions/setup-python@v5
with:
python-version: '3.11'
python-version: '3.13'

- name: Install dependencies
working-directory: front_end
Expand Down Expand Up @@ -54,7 +54,7 @@ jobs:
- name: Set up Python version
uses: actions/setup-python@v5
with:
python-version: '3.11'
python-version: '3.13'

- name: Install dependencies
working-directory: api
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/prod-changes_byavdlinuxbrokerapi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Set up Python version
uses: actions/setup-python@v5
with:
python-version: '3.11'
python-version: '3.13'

- name: Create and start virtual environment
run: |
Expand Down
2 changes: 1 addition & 1 deletion api/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.11-slim
FROM python:3.13-slim

ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1
Expand Down
4 changes: 2 additions & 2 deletions api/requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
pytest==8.3.4
PyYAML==6.0.2
pytest==9.1.1
PyYAML==6.0.3
24 changes: 12 additions & 12 deletions api/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
Flask==2.2.2
gunicorn
Werkzeug==2.2.2
azure-monitor-opentelemetry==1.8.7
azure-identity==1.17.1
azure-mgmt-compute==33.0.0
pyjwt==2.9.0
cryptography==43.0.3
requests==2.26.0
flask_caching==2.3.0
pymssql==2.3.1
azure-keyvault-secrets==4.9.0
Flask==3.1.3
gunicorn==26.0.0
Werkzeug==3.1.8
azure-monitor-opentelemetry==1.8.9
azure-identity==1.25.3
azure-mgmt-compute==38.3.0
pyjwt==2.13.0
cryptography==50.0.0
requests==2.34.2
flask_caching==2.4.1
pymssql==2.3.13
azure-keyvault-secrets==4.11.1
2 changes: 1 addition & 1 deletion front_end/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.11-slim
FROM python:3.13-slim

ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1
Expand Down
2 changes: 1 addition & 1 deletion front_end/requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
pytest==9.0.3
pytest==9.1.1
12 changes: 6 additions & 6 deletions front_end/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
Flask==2.2.2
gunicorn
Werkzeug==2.2.2
azure-monitor-opentelemetry==1.8.7
requests==2.26.0
Flask==3.1.3
gunicorn==26.0.0
Werkzeug==3.1.8
azure-monitor-opentelemetry==1.8.9
requests==2.34.2
msal==1.37.0
Flask-Session==0.8.0
Flask-WTF==1.2.1
Flask-WTF==1.3.0
pyjwt==2.13.0
cryptography==50.0.0
2 changes: 1 addition & 1 deletion task/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mcr.microsoft.com/azure-functions/python:4-python3.11
FROM mcr.microsoft.com/azure-functions/python:4-python3.13

ENV AzureWebJobsScriptRoot=/home/site/wwwroot \
AzureFunctionsJobHost__Logging__Console__IsEnabled=true
Expand Down
6 changes: 3 additions & 3 deletions task/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
# The Python Worker is managed by Azure Functions platform
# Manually managing azure-functions-worker may cause unexpected issues

azure-functions
requests
azure.identity
azure-functions==2.2.0
requests==2.34.2
azure-identity==1.25.3
Loading