Skip to content

Commit c40c602

Browse files
committed
Merge branch 'main' of github.com:pawamoy/copier-uv
2 parents 546c00d + 621bfcd commit c40c602

File tree

3 files changed

+16
-0
lines changed

3 files changed

+16
-0
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,20 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

88
<!-- insertion marker -->
9+
## [1.2.4](https://github.com/pawamoy/copier-uv/releases/tag/1.2.4) - 2025-01-23
10+
11+
<small>[Compare with 1.5.6](https://github.com/pawamoy/copier-uv/compare/1.2.3...1.2.4)</small>
12+
13+
### Merge upstream
14+
15+
#### Bug Fixes
16+
17+
- Preserve symlinks (make -> make.py) ([dab1219](https://github.com/pawamoy/copier-uv/commit/dab12193b3651001e10dab56b0ff72aacfcdf3c7) by Timothée Mazzucotelli).
18+
19+
#### Code Refactoring
20+
21+
- Enable Mypy colored output ([c6622f8](https://github.com/pawamoy/copier-uv/commit/c6622f8e1dc2bb94860c1f3ef4dc9305bbc87422) by Timothée Mazzucotelli).
22+
923
## [1.2.3](https://github.com/mkdocstrings/handler-template/releases/tag/1.2.3) - 2024-12-24
1024

1125
<small>[Compare with 1.2.2](https://github.com/mkdocstrings/handler-template/compare/1.2.2...1.2.3)</small>

copier.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ _envops:
55
keep_trailing_newline: true
66
_subdirectory: project
77
_templates_suffix: .jinja
8+
_preserve_symlinks: true
89
_jinja_extensions:
910
- copier_templates_extensions.TemplateExtensionLoader
1011
- extensions.py:CurrentYearExtension

project/duties.py.jinja

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ def check_docs(ctx: Context) -> None:
8585
def check_types(ctx: Context) -> None:
8686
"""Check that the code is correctly typed."""
8787
os.environ["MYPYPATH"] = "src"
88+
os.environ["FORCE_COLOR"] = "1"
8889
ctx.run(
8990
tools.mypy(*PY_SRC_LIST, config_file="config/mypy.ini"),
9091
title=pyprefix("Type-checking"),

0 commit comments

Comments
 (0)