Skip to content

Commit

Permalink
Fix data_tests/package_for_test_meson for JAX
Browse files Browse the repository at this point in the history
  • Loading branch information
paugier committed Jun 1, 2024
1 parent ea3020a commit 0fdc802
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
1 change: 1 addition & 0 deletions .hgignore
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ doc/ipynb/*.rst
**/__cython__/*
**/__numba__/*
**/__python__/*
**/__jax__/*

doc/for_dev/**/*.c
doc/for_dev/**/*.html
Expand Down
2 changes: 1 addition & 1 deletion data_tests/package_for_test_meson/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ needed for the editable mode (see
We can also install with another backend with:

```sh
pip install --no-build-isolation --config-settings=setup-args=-Dtransonic-backend=python .
pip install --no-build-isolation -C setup-args=-Dtransonic-backend=python .
# or (but does not work here for another reason)
python -m build --no-isolation -Csetup-args=-Dtransonic-backend=python .
```
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
python_sources = [
'bar.py',
'foo.py',
]

py.install_sources(
python_sources,
pure: false,
subdir: 'package_for_test_meson/__jax__',
)

0 comments on commit 0fdc802

Please sign in to comment.