Skip to content

Commit

Permalink
Merge branch 'main' into aesara-cache-into-aesara-package
Browse files Browse the repository at this point in the history
  • Loading branch information
maresb authored Jan 6, 2023
2 parents 2d8d69d + e88fd04 commit 1cd40bd
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
8 changes: 8 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
version: 2
updates:

# <https://docs.github.com/en/code-security/dependabot/working-with-dependabot/keeping-your-actions-up-to-date-with-dependabot#enabling-dependabot-version-updates-for-actions>
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
6 changes: 4 additions & 2 deletions .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,17 @@ 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)"
echo "Checking for lazylinker_c.c..."
test -n "$(find . -name lazylinker_c.c)" && echo "Found 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)"
echo "Checking for lazylinker_c.c..."
test -n "$(find . -name lazylinker_c.c)" && echo "Found lazylinker_c.c"
- uses: actions/upload-artifact@v2
with:
name: artifact
Expand Down

0 comments on commit 1cd40bd

Please sign in to comment.