Skip to content

Commit

Permalink
add miktex to win dependency and another attempt at fixing conditionals
Browse files Browse the repository at this point in the history
  • Loading branch information
Krande committed Sep 16, 2021
1 parent 44bcad5 commit fdd1992
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,12 @@ jobs:
python-version: ${{ matrix.pyver.distver }}
environment-file: conda/environment.yml
- name: Install latex on Windows
if: ${{ matrix.platform.name }} == Windows
shell: bash -l {0}
if: ${{ matrix.platform.name }} == 'Windows'
run: |
conda install -c krande -c conda-forge miktex
- name: Install latex on Linux
if: ${{ matrix.platform.name }} == Linux
if: ${{ matrix.platform.name }} == 'Linux'
run: |
apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \
texlive-latex-extra \
Expand Down
1 change: 1 addition & 0 deletions conda/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ requirements:
- tabulate
- svgwrite
- pytexit
- miktex # [win]
test:
source_files:
- tests
Expand Down

0 comments on commit fdd1992

Please sign in to comment.