Skip to content

Commit

Permalink
Fix incorrect python version in CI (#1037)
Browse files Browse the repository at this point in the history
  • Loading branch information
nikfilippas committed Mar 21, 2023
1 parent 2150273 commit f66f18a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
3 changes: 3 additions & 0 deletions .github/environment.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
name: test # default testing environment name from conda-incubator
dependencies:
- python=3.8
- pip
- cmake
- gsl
Expand All @@ -12,3 +13,5 @@ dependencies:
- fast-pt
- pytest
- pytest-cov
- pip:
- classy<3
6 changes: 1 addition & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,6 @@ jobs:
- os: ubuntu-latest
label: linux-64
prefix: /usr/share/miniconda3
py:
- 3.8

steps:
- name: Cancel previous runs
Expand Down Expand Up @@ -87,11 +85,9 @@ jobs:
run: |
export MAMBA_NO_BANNER=1 # hide mamba banner from output
mamba env update --file ${{ env.CONDA_ENV }} --prune
pip install "classy<3"
- name: Install CCL
run: |
pip install -e .
run: pip install -e .

- name: Unit tests
run: |
Expand Down

0 comments on commit f66f18a

Please sign in to comment.