Skip to content

Commit

Permalink
github CI Try to fix numpy-pandas version issue
Browse files Browse the repository at this point in the history
  • Loading branch information
bernstei committed Mar 6, 2024
1 parent b00b822 commit d8a96ae
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/pytests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
python3 --version
- name: Install dependencies from pip
run: python3 -m pip install wheel setuptools numpy scipy click matplotlib pandas pyyaml spglib rdkit flake8 pytest pytest-cov requests
run: python3 -m pip install wheel setuptools numpy scipy click matplotlib pyyaml spglib rdkit flake8 pytest pytest-cov requests

- name: Check numpy
run: |
Expand Down Expand Up @@ -93,6 +93,12 @@ jobs:
- name: Install Quippy from PyPI
run: python3 -m pip install quippy-ase

- name: Install xTB (before things that need pandas like MACE and wfl, since it will break pandas-numpy compatibility by downgrading numpy)
run: |
conda install -c conda-forge xtb-python
python3 -m pip install typing-extensions
python3 -m pip install pandas
- name: MACE
run: |
echo "search for torch version"
Expand Down Expand Up @@ -143,11 +149,6 @@ jobs:
run: |
echo $HOME/bin >> $GITHUB_PATH
- name: Install xTB
run: |
conda install -c conda-forge xtb-python
python3 -m pip install typing-extensions
- name: Install MPI dependencies
if: env.use-mpi
run: |
Expand Down

0 comments on commit d8a96ae

Please sign in to comment.