Skip to content

Commit 9eaeef7

Browse files
Update dependency python to 3.14
1 parent d357364 commit 9eaeef7

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/branch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Set up Python 3.9
1818
uses: actions/setup-python@v2
1919
with:
20-
python-version: "3.9"
20+
python-version: "3.14"
2121
- name: Install dependencies
2222
run: |
2323
python -m pip install --upgrade virtualenv

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Set up Python 3.9
1414
uses: actions/setup-python@v2
1515
with:
16-
python-version: "3.9"
16+
python-version: "3.14"
1717
- name: Install dependencies
1818
run: |
1919
python -m pip install --upgrade virtualenv

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Set up Python 3.9
1818
uses: actions/setup-python@v2
1919
with:
20-
python-version: "3.9"
20+
python-version: "3.14"
2121
- name: Install dependencies
2222
run: |
2323
python -m pip install --upgrade virtualenv

build/operator.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.9
1+
FROM python:3.14
22

33
COPY k8spin_operator/requirements.txt /src/requirements.txt
44
RUN pip install -r /src/requirements.txt

build/webhook.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.9
1+
FROM python:3.14
22

33
COPY k8spin_webhook/requirements.txt /src/requirements.txt
44
RUN pip install -r /src/requirements.txt

0 commit comments

Comments
 (0)