Skip to content

Commit 10c1306

Browse files
committed
git merge origin/master
2 parents 4a544b0 + ad0270a commit 10c1306

File tree

14 files changed

+299
-257
lines changed

14 files changed

+299
-257
lines changed

.github/workflows/tests-poetry.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
os: [ubuntu-latest, windows-latest]
2323
name: Test (Python ${{ matrix.python-version }} on ${{ matrix.os }})
2424
steps:
25-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v5
2626

2727
- name: Set up Python ${{ matrix.python-version }}
2828
uses: actions/setup-python@v5

.github/workflows/traffic.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
# Steps represent a sequence of tasks that will be executed as part of the job
1515
steps:
1616
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v5
1818
with:
1919
ref: "traffic"
2020

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/pre-commit/pre-commit-hooks
3-
rev: 'v5.0.0'
3+
rev: 'v6.0.0'
44
hooks:
55
- id: check-added-large-files
66
- id: check-merge-conflict

CHANGELOG.md

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
### Added
1111
- Placeholder for future updates and new features.
1212

13+
## [1.2.2] - 2025-08-22
14+
### Changed
15+
- Aktualisiert: pre-commit Hook `astral-sh/ruff-pre-commit` von `v0.11.12` auf `v0.12.10`.
16+
- Aktualisiert: pre-commit Hook `pycqa/isort` von `v5.13.2` auf `v6.0.1`.
17+
- Aktualisiert: Abhängigkeit `typer` von `0.16.0` auf `0.16.1`.
18+
- Aktualisiert: Dev-Abhängigkeit `pytest` von `8.4.0` auf `8.4.1`.
19+
- Updated pre-commit hook `astral-sh/ruff-pre-commit` from `v0.11.12` to `v0.12.10`.
20+
- Updated pre-commit hook `pycqa/isort` from `v5.13.2` to `v6.0.1`.
21+
- Updated dependency `typer` from `0.16.0` to `0.16.1`.
22+
- Updated dev dependency `pytest` from `8.4.0` to `8.4.1`.
23+
- Updated lock file (`poetry.lock`) to reflect new version states.
24+
25+
## [1.2.1] - 2025-06-05
26+
### Changed
27+
28+
- Updated pytest from 8.3.4 to 8.4
29+
- Updated typer from 0.15.1 to 0.16.0
30+
- Updated pre-commit hook assotile/pyugrade from v3.19.1 to v3.20.0
31+
- Updated setuptools from 76.0.0 to 80.9.0
32+
- Updated Python Docker tags from 3.11-slim-bookworm to 3.13-slim-bookworm and 3.11-bullseye to 3.13-bullseye
33+
- Updated pre-commit ruff from v0.11.0 to v0.11.12
1334

1435
## [1.2.0] - 2025-04-09
1536

@@ -124,5 +145,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
124145

125146
---
126147

127-
[Unreleased]: https://github.com/at-gmbh/at-python-template/compare/v1.0.0...HEAD
148+
[Unreleased]: https://github.com/at-gmbh/at-python-template/compare/v1.2.2...HEAD
149+
[1.2.2]: https://github.com/at-gmbh/at-python-template/compare/v1.2.1...v1.2.2
150+
[1.2.1]: https://github.com/at-gmbh/at-python-template/compare/v1.2.0...v1.2.1
151+
[1.2.0]: https://github.com/at-gmbh/at-python-template/compare/v1.1.1...v1.2.0
152+
[1.1.1]: https://github.com/at-gmbh/at-python-template/compare/v1.1.0...v1.1.1
153+
[1.1.0]: https://github.com/at-gmbh/at-python-template/compare/v1.0.1...v1.1.0
154+
[1.0.1]: https://github.com/at-gmbh/at-python-template/compare/v1.0.0...v1.0.1
128155
[1.0.0]: https://github.com/at-gmbh/at-python-template/releases/tag/v1.0.0

poetry.lock

Lines changed: 231 additions & 221 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "at-python-template"
3-
version = "1.2.0"
3+
version = "1.2.2"
44
description = "This is the official Python Project Template of Alexander Thamm GmbH (AT)"
55
authors = [
66
"Christian Baur <[email protected]>",
@@ -17,16 +17,16 @@ packages = [{ include = "{{cookiecutter.module_name}}", from = "{{cookiecutter.p
1717
[tool.poetry.dependencies]
1818
python = "^3.9"
1919
cookiecutter = "^2.3"
20-
pre-commit = "^4.2.0"
21-
pytest-mock = "^3.14.1"
20+
pre-commit = "^4.3.0"
21+
pytest-mock = "^3.12"
2222
pyhocon = "^0.3.60"
2323
pyyaml = "^6.0"
24-
typer = "^0.16.0"
24+
typer = "^0.16.1"
2525
setuptools = "^80.9.0"
2626

2727
[tool.poetry.group.dev.dependencies]
28-
pytest = "^8.3.5"
29-
pytest-cov = "^6.0.0"
28+
pytest = "^8.4.1"
29+
pytest-cov = "^6.2.1"
3030

3131
[build-system]
3232
requires = ["poetry-core"]

{{cookiecutter.project_slug}}/.pre-commit-config.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/pre-commit/pre-commit-hooks
3-
rev: 'v5.0.0'
3+
rev: 'v6.0.0'
44
hooks:
55
- id: check-added-large-files
66
- id: check-ast
@@ -19,15 +19,15 @@ repos:
1919
language_version: python3.9
2020
exclude: ^notebooks{% else %}
2121
- repo: https://github.com/astral-sh/ruff-pre-commit
22-
rev: 'v0.11.0'
22+
rev: 'v0.12.10'
2323
hooks:
2424
- id: ruff{% endif %}
2525
- repo: https://github.com/pycqa/isort
2626
rev: '6.0.1'
2727
hooks:
2828
- id: isort
2929
- repo: https://github.com/asottile/pyupgrade
30-
rev: 'v3.19.1'
30+
rev: 'v3.20.0'
3131
hooks:
3232
- id: pyupgrade
33-
args: [ --py38-plus ]
33+
args: [ --py39-plus ]

{{cookiecutter.project_slug}}/Dockerfile__pip

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG PYTHON_VERSION=3.11
1+
ARG PYTHON_VERSION=3.13
22
FROM python:${PYTHON_VERSION}-bullseye
33
LABEL maintainer="{{ cookiecutter.company_name if cookiecutter.company_name else cookiecutter.full_name }}"
44

{{cookiecutter.project_slug}}/Dockerfile__poetry

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG PYTHON_VERSION=3.11
1+
ARG PYTHON_VERSION=3.13
22
FROM python:${PYTHON_VERSION}-bullseye
33
LABEL maintainer="{{ cookiecutter.company_name if cookiecutter.company_name else cookiecutter.full_name }}"
44

{{cookiecutter.project_slug}}/Dockerfile__uv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ COPY ./src /app/src
1212

1313
RUN uv sync --frozen && uv cache clean
1414

15-
FROM python:3.11-slim-bookworm
15+
FROM python:3.13-slim-bookworm
1616

1717
WORKDIR /app
1818

0 commit comments

Comments
 (0)