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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0

Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Build Docker image for scanning
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.12.8
rev: v0.12.9
hooks:
- id: ruff
args: ['--fix']
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM python:3.13-slim
FROM python:3.13.7-slim

WORKDIR "/python_template"
COPY . /python_template

ENV UV_PYTHON_PREFERENCE=managed
ENV UV_PYTHON=3.13
ENV UV_PYTHON=3.13.7
ENV UV_NO_PROGRESS=true

ENV PATH="/root/.local/bin:${PATH}"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ A basic Python project template that actually works. Nothing fancy, just the stu

## What's in here

This template gives you a Python 3.13 project with:
This template gives you a Python 3.13.7 project with:

- **uv** for dependency management (it's fast)
- **pytest** for testing
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ name = "python-template"
dynamic = ["version"]
description = "Project description"
readme = "README.md"
requires-python = ">=3.13"
requires-python = ">=3.13.7"
dependencies = []

[tool.uv]
Expand All @@ -45,5 +45,5 @@ reinstall-package = ["ruff"]
required-version = ">=0.7.2"

[tool.uv.pip]
python-version = "3.13"
python-version = "3.13.7"
reinstall-package = ["ruff"]
167 changes: 84 additions & 83 deletions uv.lock

Large diffs are not rendered by default.

Loading