Skip to content

Commit 0ef88c9

Browse files
committed
Merge remote-tracking branch 'esoteric-ephemera/maxph' into maxph
2 parents a8b668e + eaea48e commit 0ef88c9

6 files changed

Lines changed: 14 additions & 6 deletions

File tree

crystal_toolkit/apps/examples/tests/test_fermi_surface.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,15 @@
22

33
from typing import TYPE_CHECKING
44

5-
from crystal_toolkit.apps.examples.fermi_surface import app
5+
import pytest
6+
7+
try:
8+
from crystal_toolkit.apps.examples.fermi_surface import app
9+
except ImportError:
10+
pytest.skip(
11+
"IFermi either not installed or newer version of setuptools used.",
12+
allow_module_level=True,
13+
)
614

715
if TYPE_CHECKING:
816
from crystal_toolkit.apps.examples.tests.typing import DashDuo

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ requires-python = ">=3.10"
1111
authors = [{ name = "Matt Horton", email = "mkhorton@lbl.gov" }]
1212

1313
dependencies = [
14-
"dash-mp-components==0.5.1rc5",
14+
"dash-mp-components>=0.5.1rc5,<0.5.2",
1515
"dash>=2.11.0",
1616
"flask-caching",
1717
"frozendict",

requirements/ubuntu-latest_py3.11.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ cython==3.2.4
4444
# via boltztrap2
4545
dash==3.4.0
4646
# via crystal_toolkit (pyproject.toml)
47-
dash-mp-components==0.5.0rc0
47+
dash-mp-components==0.5.1rc5
4848
# via crystal_toolkit (pyproject.toml)
4949
decorator==5.2.1
5050
# via ipython

requirements/ubuntu-latest_py3.11_extras.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ dash[testing]==3.4.0
135135
# dash-vtk
136136
dash-extensions==2.0.4
137137
# via crystal_toolkit (pyproject.toml)
138-
dash-mp-components==0.5.0rc0
138+
dash-mp-components==0.5.1rc5
139139
# via crystal_toolkit (pyproject.toml)
140140
dash-testing-stub==0.0.2
141141
# via dash

requirements/ubuntu-latest_py3.12.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ cython==3.2.4
4444
# via boltztrap2
4545
dash==3.4.0
4646
# via crystal_toolkit (pyproject.toml)
47-
dash-mp-components==0.5.0rc0
47+
dash-mp-components==0.5.1rc5
4848
# via crystal_toolkit (pyproject.toml)
4949
decorator==5.2.1
5050
# via ipython

requirements/ubuntu-latest_py3.12_extras.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ dash[testing]==3.4.0
135135
# dash-vtk
136136
dash-extensions==2.0.4
137137
# via crystal_toolkit (pyproject.toml)
138-
dash-mp-components==0.5.0rc0
138+
dash-mp-components==0.5.1rc5
139139
# via crystal_toolkit (pyproject.toml)
140140
dash-testing-stub==0.0.2
141141
# via dash

0 commit comments

Comments
 (0)