From 3d9a7e17167294ee43673cafa615931614240235 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Mazzucotelli?= Date: Fri, 14 Jun 2024 09:14:10 +0200 Subject: [PATCH 1/4] fix: Re-include tests folder in source distributions --- project/pyproject.toml.jinja | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/pyproject.toml.jinja b/project/pyproject.toml.jinja index 758beb9..dec9c07 100644 --- a/project/pyproject.toml.jinja +++ b/project/pyproject.toml.jinja @@ -121,7 +121,7 @@ version = {source = "scm"} [tool.pdm.build] package-dir = "src" editable-backend = "editables" -source-includes = ["share"] +source-includes = ["share", "tests"] [tool.pdm.build.wheel-data] data = [ From 3872fd637ca6804677fa3eee3a38c772f7501da3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Mazzucotelli?= Date: Fri, 14 Jun 2024 09:15:12 +0200 Subject: [PATCH 2/4] docs: Update changelog for version 1.2.9 --- CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 623ea3e..08d6048 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,14 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## [1.2.9](https://github.com/pawamoy/copier-uv/releases/tag/1.2.9) - 2024-06-14 + +[Compare with 1.2.8](https://github.com/pawamoy/copier-uv/compare/1.2.8...1.2.9) + +### Bug Fixes + +- Re-include tests folder in source distributions ([3d9a7e1](https://github.com/pawamoy/copier-uv/commit/3d9a7e17167294ee43673cafa615931614240235) by Timothée Mazzucotelli). + ## [1.2.8](https://github.com/pawamoy/copier-uv/releases/tag/1.2.8) - 2024-05-24 [Compare with 1.2.7](https://github.com/pawamoy/copier-uv/compare/1.2.7...1.2.8) From 064ffb06b5f0e2039987116e443f67cf877965d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Mazzucotelli?= Date: Tue, 18 Jun 2024 14:00:02 +0200 Subject: [PATCH 3/4] refactor: Include almost everything in source distributions, to help system packagers --- project/pyproject.toml.jinja | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/project/pyproject.toml.jinja b/project/pyproject.toml.jinja index 758beb9..dd9e443 100644 --- a/project/pyproject.toml.jinja +++ b/project/pyproject.toml.jinja @@ -121,7 +121,19 @@ version = {source = "scm"} [tool.pdm.build] package-dir = "src" editable-backend = "editables" -source-includes = ["share"] +excludes = ["**/.pytest_cache"] +source-includes = [ + "config", + "docs", + "scripts", + "share", + "tests", + "devdeps.txt", + "duties.py", + "mkdocs.yml", + "*.md", + "LICENSE", +] [tool.pdm.build.wheel-data] data = [ From b6ea372fcf5f2a25dd4664116b045c4ed0df75ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Mazzucotelli?= Date: Tue, 18 Jun 2024 14:00:32 +0200 Subject: [PATCH 4/4] docs: Update changelog for version 1.2.9 --- CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 623ea3e..3b791d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,14 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## [1.2.9](https://github.com/pawamoy/copier-uv/releases/tag/1.2.9) - 2024-06-18 + +[Compare with 1.2.8](https://github.com/pawamoy/copier-uv/compare/1.2.8...1.2.9) + +### Code Refactoring + +- Include almost everything in source distributions, to help system packagers ([064ffb0](https://github.com/pawamoy/copier-uv/commit/064ffb06b5f0e2039987116e443f67cf877965d1) by Timothée Mazzucotelli). + ## [1.2.8](https://github.com/pawamoy/copier-uv/releases/tag/1.2.8) - 2024-05-24 [Compare with 1.2.7](https://github.com/pawamoy/copier-uv/compare/1.2.7...1.2.8)