Skip to content

Commit

Permalink
Make sure c code is included
Browse files Browse the repository at this point in the history
  • Loading branch information
maresb committed Dec 17, 2022
1 parent 85cf2be commit 127aed1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,15 @@ jobs:
python -m venv venv-sdist
venv-sdist/bin/python -m pip install ../dist/aesara-*.tar.gz
venv-sdist/bin/python -c "import aesara;print(aesara.__version__)"
test -n "$(find . -name lazylinker_c.c)"
- name: Check the wheel installs and imports
run: |
mkdir -p test-wheel
cd test-wheel
python -m venv venv-wheel
venv-wheel/bin/python -m pip install ../dist/aesara-*.whl
venv-wheel/bin/python -c "import aesara;print(aesara.__version__)"
test -n "$(find . -name lazylinker_c.c)"
- uses: actions/upload-artifact@v2
with:
name: artifact
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ exclude = [
namespaces = false

[tool.setuptools.package-data]
aesara = [
"*" = [
"*.txt",
"*.rst",
"*.txt",
Expand Down

0 comments on commit 127aed1

Please sign in to comment.