Skip to content

Commit

Permalink
try python rather than python3
Browse files Browse the repository at this point in the history
maybe this fixes windows?
  • Loading branch information
mara004 committed Oct 31, 2023
1 parent 8f55fa7 commit 2a6fffb
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/conda.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ jobs:
conda install -y conda-build conda-verify
git config --global user.email "[email protected]"
git config --global user.name "geisserml"
python3 -VV
python3 -m pip install -U -r req/setup.txt
python -VV
python -m pip install -U -r req/setup.txt
- name: Build package
run: ./run craft conda_${{ inputs.package }}
Expand Down Expand Up @@ -103,16 +103,16 @@ jobs:
ls -l conda/transfer/
conda install bblanchon::pdfium-binaries
conda install conda/transfer/*.tar.bz2
python3 -VV
python -VV
- name: Test raw package
if: inputs.package == 'raw'
run: python3 conda/raw/minitest.py
run: python conda/raw/minitest.py

- name: Test helpers package
if: inputs.package == 'helpers'
run: |
python3 -m pip install -U -r req/default.txt
python -m pip install -U -r req/default.txt
./run test
# publish:
Expand Down

0 comments on commit 2a6fffb

Please sign in to comment.