Skip to content

Commit 122d00f

Browse files
FIX wheel including wrong files using pixi build-wheel (#205)
1 parent 30889b7 commit 122d00f

File tree

11 files changed

+16
-4
lines changed

11 files changed

+16
-4
lines changed

meson.build

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ project(
1111

1212
py = import('python').find_installation(pure: false)
1313

14-
install_subdir('fastcan', install_dir: py.get_install_dir())
14+
install_subdir(
15+
'fastcan',
16+
install_dir: py.get_install_dir(),
17+
install_tag: 'python-runtime',
18+
)
1519

1620
subdir('fastcan')

pixi.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pixi.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ test = "pytest"
101101
test-coverage = { cmd = "rm -rf .coverage && pytest --cov-report {{ FMT }} --cov={{ PACKAGE }}", args = [{ arg = "FMT", default = "html" }, { arg = "PACKAGE", default = "fastcan" }] }
102102

103103
[feature.build.tasks]
104-
build-wheel = "rm -rf dist && python -m build -wnx -Cinstall-args=--tags=runtime,python-runtime,devel"
104+
build-wheel = "rm -rf dist && python -m build -wnx"
105105
build-sdist = "rm -rf dist && python -m build --sdist"
106106
rebuild = "rm -rf build && pip install --no-deps --force-reinstall -e ."
107107

0 commit comments

Comments
 (0)