Skip to content

Commit b377f14

Browse files
authored
Upgrade to Python 3.10 because Keras now requires it. (#2109)
1 parent 715c864 commit b377f14

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/ISSUE_TEMPLATE/keras_issue_template.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ body:
7272
attributes:
7373
label: Python version
7474
description:
75-
placeholder: e.g., 3.9
75+
placeholder: e.g., 3.10
7676
validations:
7777
required: false
7878
- type: input

.github/workflows/continuous_integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- uses: actions/checkout@v2
1616
- uses: actions/setup-python@v1
1717
with:
18-
python-version: 3.9
18+
python-version: 3.10.17
1919
- name: Ensure files are formatted with black
2020
run: |
2121
pip install --upgrade pip

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.10
22

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

0 commit comments

Comments
 (0)