Skip to content

Commit f182ec5

Browse files
Update copier template to v0.2.0
1 parent fb676fa commit f182ec5

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.copier-answers.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# This file is managed by Copier; DO NOT EDIT OR REMOVE.
2-
_commit: v0.1.0-2-g162001d
2+
_commit: v0.2.0
33
_src_path: https://github.com/quantco/copier-template-python-open-source
44
add_autobump_workflow: false
55
author_email: noreply@quantco.com

.github/workflows/build.yml

+2
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ jobs:
2020
environments: build
2121
- name: Build project
2222
run: pixi run -e build build-wheel
23+
- name: Check package
24+
run: pixi run -e build check-wheel
2325
- name: Upload package
2426
uses: actions/upload-artifact@v4
2527
with:

pixi.toml

+3-1
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,11 @@ test = "pytest"
2424
test-coverage = "pytest --cov=multiregex --cov-report=xml --cov-report=term-missing"
2525

2626
[feature.build.dependencies]
27-
build = "*"
27+
python-build = "*"
28+
twine = "*"
2829
[feature.build.tasks]
2930
build-wheel = "python -m build --no-isolation ."
31+
check-wheel = "twine check dist/*"
3032

3133
[feature.lint.dependencies]
3234
pre-commit = "*"

0 commit comments

Comments
 (0)