Skip to content

Commit a22bbdb

Browse files
committed
chore: Template upgrade
1 parent a27337f commit a22bbdb

15 files changed

Lines changed: 171 additions & 148 deletions

.copier-answers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Changes here will be overwritten by Copier
2-
_commit: 0.1.9
2+
_commit: 0.2.1
33
_src_path: gh:pawamoy/copier-poetry
44
author_email: pawamoy@pm.me
55
author_fullname: "Timoth\xE9e Mazzucotelli"

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ jobs:
4343
run: |
4444
pip install poetry
4545
poetry install -v -E numpy-style || { rm -rf .venv; poetry install -v -E numpy-style; }
46+
poetry update
4647
4748
- name: Check if the documentation builds correctly
4849
run: poetry run duty check-docs
@@ -86,6 +87,7 @@ jobs:
8687
run: |
8788
pip install poetry
8889
poetry install -v -E numpy-style || { rm -rf .venv; poetry install -v -E numpy-style; }
90+
poetry update
8991
9092
- name: Run the test suite
9193
run: poetry run duty test

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Run `make help` to see all the available actions!
3838

3939
## Tasks
4040

41-
This project uses [Duty](https://github.com/pawamoy/duty) to run tasks.
41+
This project uses [duty](https://github.com/pawamoy/duty) to run tasks.
4242
A Makefile is also provided. The Makefile will try to run certain tasks
4343
on multiple Python versions. If for some reason you don't want to run the task
4444
on multiple Python versions, you can do one of the following:

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ args = $(foreach a,$($(subst -,_,$1)_args),$(if $(value $a),$a="$($a)"))
77
check_code_quality_args = files
88
docs_serve_args = host port
99
release_args = version
10-
test_args = match
10+
test_args = cleancov match
1111

1212
BASIC_DUTIES = \
1313
changelog \

config/coverage.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ source =
66
[coverage:run]
77
branch = true
88
source =
9-
pytkdocs
9+
src/pytkdocs
1010
tests
1111
parallel = true
1212

docs/changelog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{!CHANGELOG.md!}
1+
--8<-- "CHANGELOG.md"

docs/code_of_conduct.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{!CODE_OF_CONDUCT.md!}
1+
--8<-- "CODE_OF_CONDUCT.md"

docs/contributing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{!CONTRIBUTING.md!}
1+
--8<-- "CONTRIBUTING.md"

docs/credits.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{!CREDITS.md!}
1+
{{ credits() }}

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{!README.md!}
1+
--8<-- "README.md"

0 commit comments

Comments
 (0)