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
2 changes: 1 addition & 1 deletion .github/workflows/tests-poetry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
os: [ubuntu-latest, windows-latest]
name: Test (Python ${{ matrix.python-version }} on ${{ matrix.os }})
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/traffic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
ref: "traffic"

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/pre-commit/pre-commit-hooks
rev: 'v5.0.0'
rev: 'v6.0.0'
hooks:
- id: check-added-large-files
- id: check-merge-conflict
Expand Down
20 changes: 19 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Placeholder for future updates and new features.

## [1.2.2] - 2025-08-22
### Changed
- Aktualisiert: pre-commit Hook `astral-sh/ruff-pre-commit` von `v0.11.12` auf `v0.12.10`.
- Aktualisiert: pre-commit Hook `pycqa/isort` von `v5.13.2` auf `v6.0.1`.
- Aktualisiert: Abhängigkeit `typer` von `0.16.0` auf `0.16.1`.
- Aktualisiert: Dev-Abhängigkeit `pytest` von `8.4.0` auf `8.4.1`.
- Updated pre-commit hook `astral-sh/ruff-pre-commit` from `v0.11.12` to `v0.12.10`.
- Updated pre-commit hook `pycqa/isort` from `v5.13.2` to `v6.0.1`.
- Updated dependency `typer` from `0.16.0` to `0.16.1`.
- Updated dev dependency `pytest` from `8.4.0` to `8.4.1`.
- Updated lock file (`poetry.lock`) to reflect new version states.

## [1.2.1] - 2025-06-05
### Changed

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

---

[Unreleased]: https://github.com/at-gmbh/at-python-template/compare/v1.0.0...HEAD
[Unreleased]: https://github.com/at-gmbh/at-python-template/compare/v1.2.2...HEAD
[1.2.2]: https://github.com/at-gmbh/at-python-template/compare/v1.2.1...v1.2.2
[1.2.1]: https://github.com/at-gmbh/at-python-template/compare/v1.2.0...v1.2.1
[1.2.0]: https://github.com/at-gmbh/at-python-template/compare/v1.1.1...v1.2.0
[1.1.1]: https://github.com/at-gmbh/at-python-template/compare/v1.1.0...v1.1.1
[1.1.0]: https://github.com/at-gmbh/at-python-template/compare/v1.0.1...v1.1.0
[1.0.1]: https://github.com/at-gmbh/at-python-template/compare/v1.0.0...v1.0.1
[1.0.0]: https://github.com/at-gmbh/at-python-template/releases/tag/v1.0.0
20 changes: 10 additions & 10 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "at-python-template"
version = "1.2.1"
version = "1.2.2"
description = "This is the official Python Project Template of Alexander Thamm GmbH (AT)"
authors = [
"Christian Baur <christian.baur@alexanderthamm.com>",
Expand All @@ -17,16 +17,16 @@ packages = [{ include = "{{cookiecutter.module_name}}", from = "{{cookiecutter.p
[tool.poetry.dependencies]
python = "^3.9"
cookiecutter = "^2.3"
pre-commit = "^4.1.0"
pre-commit = "^4.3.0"
pytest-mock = "^3.12"
pyhocon = "^0.3.60"
pyyaml = "^6.0"
typer = "^0.16.0"
typer = "^0.16.1"
setuptools = "^80.9.0"

[tool.poetry.group.dev.dependencies]
pytest = "^8.4.0"
pytest-cov = "^6.0.0"
pytest = "^8.4.1"
pytest-cov = "^6.0.1"

[build-system]
requires = ["poetry-core"]
Expand Down
4 changes: 2 additions & 2 deletions {{cookiecutter.project_slug}}/.pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: 'v5.0.0'
rev: 'v6.0.0'
hooks:
- id: check-added-large-files
- id: check-ast
Expand All @@ -19,7 +19,7 @@ repos:
language_version: python3.9
exclude: ^notebooks{% else %}
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: 'v0.11.12'
rev: 'v0.12.10'
hooks:
- id: ruff{% endif %}
- repo: https://github.com/pycqa/isort
Expand Down
6 changes: 3 additions & 3 deletions {{cookiecutter.project_slug}}/environment-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ channels:

dependencies:
- python>=3.9
- pytest>=8.3.4
- pytest-cov>=6.0.0
- pre-commit>=4.1.0
- pytest>=8.4.1
- pytest-cov>=6.0.1
- pre-commit>=4.3.0
- isort>=6.0.0{% if cookiecutter.use_notebooks == 'yes' %}
- jupyterlab>=4.3.5{% endif %}
- pip{% if cookiecutter.code_formatter == 'black' %}
Expand Down
14 changes: 7 additions & 7 deletions {{cookiecutter.project_slug}}/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ pyhocon = "^0.3.59"
PyYAML = "^6.0"
{%- endif %}
{%- if cookiecutter.create_cli == 'yes' %}
typer = "^0.16.0"
typer = "^0.16.1"
{%- endif %}

[tool.poetry.group.test.dependencies]
pytest = "^8.4.0"
pytest-cov = "^4.0"
pytest = "^8.4.1"
pytest-cov = "^6.0.1"

[tool.poetry.group.linter.dependencies]
{%- if cookiecutter.code_formatter == 'black' %}
Expand All @@ -32,7 +32,7 @@ ruff = "^0.1.7"
isort = "^5.12.0"

[tool.poetry.group.dev.dependencies]
pre-commit = "^3.0"
pre-commit = "^4.3.0"
{%- if cookiecutter.use_notebooks == 'yes' %}
jupyterlab = "^3.5"
{%- endif %}
Expand Down Expand Up @@ -77,7 +77,7 @@ dependencies = [
"PyYAML>=6.0",
{%- endif %}
{%- if cookiecutter.create_cli == 'yes' %}
"typer>=0.16.0",
"typer>=0.16.1",
{%- endif %}
]

Expand All @@ -99,7 +99,7 @@ hello_gui = "{{ cookiecutter.module_name }}.gui:main"
a = "{{ cookiecutter.module_name }}_plugin_a"

[dependency-groups]
dev = ["pre-commit>=3.0"{% if cookiecutter.use_notebooks == 'yes' %}, "jupyterlab>=3.5"{% endif %}]
dev = ["pre-commit>=4.3.0"{% if cookiecutter.use_notebooks == 'yes' %}, "jupyterlab>=3.5"{% endif %}]
linter = [
{%- if cookiecutter.code_formatter == 'black' %}
"black>=25.1.0",
Expand All @@ -108,7 +108,7 @@ linter = [
{%- endif %}
"isort>=5.12.0"
]
test = ["pytest>=8.4.0", "pytest-cov>=4.0"]
test = ["pytest>=8.4.1", "pytest-cov>=6.0.1"]

[tool.isort]
{%- if cookiecutter.code_formatter == 'black' %}
Expand Down
6 changes: 3 additions & 3 deletions {{cookiecutter.project_slug}}/requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# with this project (e.g. for testing or useful development tools).
# The regular project dependencies are defined in requirements.txt{% if cookiecutter.code_formatter == 'black' %}
black~=25.1.0{% endif %}
pre-commit~=4.1
pytest~=8.4.0
pytest-cov~=6.0
pre-commit~=4.3.0
pytest~=8.4.1
pytest-cov~=6.0.1
wheel~=0.45.1
2 changes: 1 addition & 1 deletion {{cookiecutter.project_slug}}/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ PyYAML~=6.0.2
# Dependency for Command-Line Interface (CLI) if enabled
{% if cookiecutter.create_cli == 'yes' %}
# CLI framework (with optional dependencies for enhanced functionality)
typer~=0.16.0
typer~=0.16.1
{% endif %}
Loading