Skip to content

Commit

Permalink
Attempt the use of the correct conda env
Browse files Browse the repository at this point in the history
  • Loading branch information
JPGlaser committed Jul 25, 2023
1 parent cb06489 commit 4d6dec3
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/test_notebook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,27 +15,26 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.8"]

steps:
- name: Install pdflatex
run: |
sudo apt-get update
sudo apt-get install texlive-latex-base pdftk latex2html
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: conda-incubator/setup-miniconda@v2
- uses: conda-incubator/setup-miniconda@v2
with:
python-version: ${{ matrix.python-version }}
mamba-version: "*"
channels: conda-forge,defaults
channel-priority: true
- name: Install Dependencies & Main Code
run: |
python -m pip install --upgrade pip
python -m pip install pytest
pip install --upgrade pip
pip install pytest
mamba install -c conda-forge python=${{ matrix.python-version }} cython=0.29.36 tempo2 scikit-sparse
python -m pip install -e .
pip install -e .
- name: Test with Standard Pulsar
run: |
export PULSAR_NAME='J0605+3757'
Expand Down

0 comments on commit 4d6dec3

Please sign in to comment.