Skip to content

Commit

Permalink
Try a different tack
Browse files Browse the repository at this point in the history
  • Loading branch information
utf committed Jul 22, 2021
1 parent ee31819 commit 33afeb3
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

- name: Install dependencies
run: |
python -m pip install pip==20.3.4 # fix for github actions failures
python -m pip install --upgrade pip
pip install numpy wheel
pip install -r requirements.txt
pip install -e .[docs]
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,9 @@ jobs:

- name: Install dependencies
run: |
python -m pip install pip==20.3.4 # fix for github actions failures
python -m pip install --upgrade pip
pip install numpy wheel
pip install -r requirements.txt
pip install -e .[mayavi]
pip install -e .[tests]
pip install -e .[decimation]
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,9 @@ jobs:

- name: Install dependencies
run: |
python -m pip install pip==20.3.4 # fix for github actions failures
python -m pip install --upgrade pip
pip install numpy wheel
pip install -r requirements.txt
pip install -e .[mayavi]
pip install -e .[tests]
pip install -e .[decimation]
Expand Down
5 changes: 0 additions & 5 deletions ifermi/tests/test_plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,6 @@
from ifermi.plot import FermiSlicePlotter, FermiSurfacePlotter
from ifermi.surface import FermiSurface

try:
import open3d
except ImportError:
open3d = None

test_dir = Path(__file__).resolve().parent


Expand Down

0 comments on commit 33afeb3

Please sign in to comment.