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
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Added
- Placeholder for future updates and new features.
## [1.3.1] - 2026-05-04

### Fixed
- Added missing `pip install -e .` step to the conda Getting Started instructions in the generated README (closes #106). Without this step, module imports fail when running `pytest` or launching notebooks.

## [1.3.0] - 2026-01-27

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "at-python-template"
version = "1.3.0"
version = "1.3.1"
description = "This is the official Python Project Template of Alexander Thamm GmbH (AT)"
authors = [
"Christian Baur <christian.baur@alexanderthamm.com>",
Expand Down
6 changes: 5 additions & 1 deletion {{cookiecutter.project_slug}}/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ Then activate the environment with:

conda activate {{ cookiecutter.project_slug }}

Next, install the module in editable mode so that imports work correctly in tests and notebooks:

pip install -e .

To update this environment with your production dependencies, please run:

conda env update --file=environment.yml
Expand All @@ -43,7 +47,7 @@ Whenever you run `poetry run <command>`, that `<command>` is actually run inside
{% elif cookiecutter.package_manager == 'uv' %}
## Using `uv` for Project Setup

> 🧰 **Note:** You do **not** need to have Python pre-installed.
> 🧰 **Note:** You do **not** need to have Python pre-installed.
> `uv` includes its own Python runtime and manages everything automatically.

### 🔧 Installing `uv`
Expand Down