MilesCranmer commited on
Commit
5486602
1 Parent(s): 16f91b6

Fix conda-based install of PySR

Browse files
Files changed (1) hide show
  1. .github/workflows/CI_conda.yml +1 -1
.github/workflows/CI_conda.yml CHANGED
@@ -65,7 +65,7 @@ jobs:
65
  run: |
66
  python -m pip install --upgrade pip
67
  conda install -c conda-forge $(cat requirements.txt | grep -v "julia" | xargs echo | sed "s/_/-/g")
68
- pip install .
69
  python -c 'import pysr; pysr.install()'
70
  - name: "Ensure that static libpython warning appears"
71
  run: python test/test_static_libpython_warning.py
 
65
  run: |
66
  python -m pip install --upgrade pip
67
  conda install -c conda-forge $(cat requirements.txt | grep -v "julia" | xargs echo | sed "s/_/-/g")
68
+ python setup.py install
69
  python -c 'import pysr; pysr.install()'
70
  - name: "Ensure that static libpython warning appears"
71
  run: python test/test_static_libpython_warning.py