Skip to content

Commit

Permalink
Fix GH action
Browse files Browse the repository at this point in the history
  • Loading branch information
gibsramen committed Sep 18, 2023
1 parent ed3d08c commit d4fd94a
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

strategy:
matrix:
python-version: ["3.7", "3.8", "3.9"]
python-version: ["3.8", "3.9", "3.10"]

steps:
- uses: actions/checkout@v2
Expand All @@ -39,7 +39,14 @@ jobs:

- name: Install conda packages
shell: bash -l {0}
run: mamba install -c conda-forge biom-format patsy pytest xarray scikit-bio flake8 arviz cmdstanpy
run: mamba install -c conda-forge biom-format patsy pytest xarray scikit-bio flake8 arviz

# Temp req before CmdStanPy cuts a new release
- name: Install develop branch of CmdStanPy
shell: bash -l {0}
run: >
pip install git+https://github.com/stan-dev/cmdstanpy.git@develop;
install_cmdstan
- name: Install BIRDMAn
shell: bash -l {0}
Expand Down

0 comments on commit d4fd94a

Please sign in to comment.