Skip to content
Open
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/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: "3.9"
python-version: "3.14"
cache: "pip"
- name: Install cookiecutter
run: |
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG PYTHON_VERSION=3.9-slim-buster
ARG PYTHON_VERSION=3.11-slim-buster

# define an alias for the specfic python version used in this file.
FROM python:${PYTHON_VERSION} as python
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG PYTHON_VERSION=3.9-slim-buster
ARG PYTHON_VERSION=3.11-slim-buster

# define an alias for the specfic python version used in this file.
FROM python:${PYTHON_VERSION} as python
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG PYTHON_VERSION=3.9-slim-buster
ARG PYTHON_VERSION=3.11-slim-buster

# define an alias for the specfic python version used in this file.
FROM python:${PYTHON_VERSION} as python
Expand Down
2 changes: 1 addition & 1 deletion {{cookiecutter.github_repository}}/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description = "{{cookiecutter.project_description}}"
authors = ["{{cookiecutter.default_from_email}}"]

[tool.poetry.dependencies]
python = "~3.9"
python = "~3.14.0"
Django = "~4.1"
django-environ = "^0.9"
django-sites = "^0.11"
Expand Down
Loading