Skip to content

Commit 1cd40bd

Browse files
authored
Merge branch 'main' into aesara-cache-into-aesara-package
2 parents 2d8d69d + e88fd04 commit 1cd40bd

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

.github/dependabot.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
version: 2
2+
updates:
3+
4+
# <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>
5+
- package-ecosystem: "github-actions"
6+
directory: "/"
7+
schedule:
8+
interval: "daily"

.github/workflows/pypi.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,17 @@ jobs:
3939
python -m venv venv-sdist
4040
venv-sdist/bin/python -m pip install ../dist/aesara-*.tar.gz
4141
venv-sdist/bin/python -c "import aesara;print(aesara.__version__)"
42-
test -n "$(find . -name lazylinker_c.c)"
42+
echo "Checking for lazylinker_c.c..."
43+
test -n "$(find . -name lazylinker_c.c)" && echo "Found lazylinker_c.c"
4344
- name: Check the wheel installs and imports
4445
run: |
4546
mkdir -p test-wheel
4647
cd test-wheel
4748
python -m venv venv-wheel
4849
venv-wheel/bin/python -m pip install ../dist/aesara-*.whl
4950
venv-wheel/bin/python -c "import aesara;print(aesara.__version__)"
50-
test -n "$(find . -name lazylinker_c.c)"
51+
echo "Checking for lazylinker_c.c..."
52+
test -n "$(find . -name lazylinker_c.c)" && echo "Found lazylinker_c.c"
5153
- uses: actions/upload-artifact@v2
5254
with:
5355
name: artifact

0 commit comments

Comments
 (0)