Skip to content

Commit 33afeb3

Browse files
committed
Try a different tack
1 parent ee31819 commit 33afeb3

File tree

4 files changed

+3
-10
lines changed

4 files changed

+3
-10
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
- name: Install dependencies
2323
run: |
24-
python -m pip install pip==20.3.4 # fix for github actions failures
24+
python -m pip install --upgrade pip
2525
pip install numpy wheel
2626
pip install -r requirements.txt
2727
pip install -e .[docs]

.github/workflows/release.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,9 @@ jobs:
1818

1919
- name: Install dependencies
2020
run: |
21-
python -m pip install pip==20.3.4 # fix for github actions failures
21+
python -m pip install --upgrade pip
2222
pip install numpy wheel
2323
pip install -r requirements.txt
24-
pip install -e .[mayavi]
2524
pip install -e .[tests]
2625
pip install -e .[decimation]
2726

.github/workflows/tests.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,9 @@ jobs:
2222

2323
- name: Install dependencies
2424
run: |
25-
python -m pip install pip==20.3.4 # fix for github actions failures
25+
python -m pip install --upgrade pip
2626
pip install numpy wheel
2727
pip install -r requirements.txt
28-
pip install -e .[mayavi]
2928
pip install -e .[tests]
3029
pip install -e .[decimation]
3130

ifermi/tests/test_plot.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,6 @@
77
from ifermi.plot import FermiSlicePlotter, FermiSurfacePlotter
88
from ifermi.surface import FermiSurface
99

10-
try:
11-
import open3d
12-
except ImportError:
13-
open3d = None
14-
1510
test_dir = Path(__file__).resolve().parent
1611

1712

0 commit comments

Comments
 (0)