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/global_license_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: "3.12"
python-version: "3.14.4"

- name: Setup uv
uses: astral-sh/setup-uv@v7
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/global_security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.13'
python-version: '3.14.4'

- name: Bandit by PyCQA
uses: PyCQA/bandit-action@main
Expand Down Expand Up @@ -110,7 +110,7 @@ jobs:

- uses: actions/setup-python@v6
with:
python-version: '3.13'
python-version: '3.14.4'

- name: install
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mage_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.13'
python-version: '3.14.4'
cache: 'pip'
- name: Install dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion AIMER-ROOT/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.13-slim
FROM python:3.14-slim

ARG APP_HOME=/app
WORKDIR ${APP_HOME}
Expand Down
2 changes: 1 addition & 1 deletion AIMER-ROOT/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
name = "aimer"
version = "0.1.0"
requires-python = ">=3.13"
requires-python = ">=3.14.4"
dependencies = [
"django[argon2]>=6.0.4",
"django-rich==2.2.0",
Expand Down
2 changes: 1 addition & 1 deletion FARM/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.13-slim
FROM python:3.14-slim

ARG APP_HOME=/app
WORKDIR ${APP_HOME}
Expand Down
2 changes: 1 addition & 1 deletion FARM/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
name = "farm"
version = "0.1.0"
requires-python = ">=3.12"
requires-python = ">=3.14.4"
dependencies = [
"django>=6.0.4",
# "syft-flwr==0.5.1",
Expand Down
2 changes: 1 addition & 1 deletion MAGE/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.13-slim
FROM python:3.14-slim

ARG APP_HOME=/app
WORKDIR ${APP_HOME}
Expand Down
2 changes: 1 addition & 1 deletion MAGE/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
name = "mage"
version = "0.1.0"
requires-python = ">=3.12"
requires-python = ">=3.14.4"
dependencies = [
"fastapi[standard-no-fastapi-cloud-cli]==0.136.1",
"fastmcp==3.2.4",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
name = "aimer-workspace"
version = "0.1.0"
requires-python = ">=3.13"
requires-python = ">=3.14.4"

dependencies = []

Expand Down
Loading