Skip to content

Commit f17ffbc

Browse files
author
Don O'Neill
committed
update to python 3.12
1 parent d26cb62 commit f17ffbc

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "TitleCreator Development Environment",
3-
"image": "mcr.microsoft.com/devcontainers/python:3.9",
3+
"image": "mcr.microsoft.com/devcontainers/python:3.12",
44

55
"features": {
66
"ghcr.io/devcontainers/features/docker-in-docker:2": {},

CODESPACES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This repository is configured with a pre-built GitHub Codespaces environment tha
1010
- Wait for the environment to build (first time takes ~3-5 minutes)
1111

1212
2. **Environment will include**:
13-
- ✅ Python 3.9 with Flask and dependencies
13+
- ✅ Python 3.12 with Flask and dependencies
1414
- ✅ Docker and Docker Compose
1515
- ✅ Google Cloud CLI (`gcloud`)
1616
- ✅ GitHub CLI (`gh`)

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Use an official Python 3 slim base image
2-
FROM python:3.9-slim
2+
FROM python:3.12-slim
33

44
# Set the working directory in the container
55
WORKDIR /app

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Inspired by a salesperson who would always introduce me with a new title on ever
1717
## Instructions to run locally:
1818
Enter this in the command line:
1919

20-
`Python TitleCreator.py` or `./TitleCreator.py` on Linux/BSD/macOS.
20+
`python3 titlecreator.py` or `./titlecreator.py` on Linux/BSD/macOS.
2121

2222
^ You did it! You have a new title! Add it to your Linkedin.
2323

app.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
runtime: python27
1+
runtime: python312
22
api_version: 1
33
threadsafe: false
44
handlers:

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
flask==2.3.3
2-
gunicorn==23.0.0
1+
flask==3.0.2
2+
gunicorn==21.2.0

0 commit comments

Comments
 (0)