Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ jobs:
run: |
sudo apt-get install graphviz graphviz-dev
pip install -e .[test]
pip install git+https://github.com/zaxtax/pytensor.git@blockwise_scan_hack --force-reinstall
pytest ${{ matrix.split }}
- name: Check oldest version of PyMC
if: ${{ matrix.config.oldest-pymc }}
Expand Down Expand Up @@ -89,6 +90,7 @@ jobs:
run: |
sudo apt-get install graphviz graphviz-dev
pip install -e .[test]
pip install git+https://github.com/zaxtax/pytensor.git@blockwise_scan_hack --force-reinstall
pytest --only-slow ${{ matrix.split }}
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test_notebook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,6 @@ jobs:
run: |
sudo apt-get install graphviz graphviz-dev
pip install -e .[docs,test,dag]
pip install git+https://github.com/zaxtax/pytensor.git@blockwise_scan_hack --force-reinstall
- name: Run notebooks
run: make run_notebooks
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ dependencies = [
"pandas",
"pydantic>=2.1.0",
# NOTE: Used as minimum pymc version with test.yml `OLDEST_PYMC_VERSION`
"pymc>=5.22.0,<5.23.0",
"pymc>=5.22.0",
"pytensor>=2.30.3",
"scikit-learn>=1.1.1",
"seaborn>=0.12.2",
Expand Down
Loading