Skip to content

Commit 49edad6

Browse files
committed
Remove typing_extensions requirement following pymatgen-analysis-defects release with fix (materialsproject/pymatgen-analysis-defects#188)
1 parent 302884d commit 49edad6

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

pyproject.toml

-3
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,6 @@ dependencies = [
3232
"vise>=0.9.0", # for eigenvalue analysis, >=0.9.0 required for SOC compatibility
3333
"easyunfold>=0.3.6", # for efficient PROCAR parsing (and supporting SOC),
3434
# if any dependency issues arise can make easyunfold an optional dependency
35-
"typing-extensions" # to fix `pymatgen` typing issues
36-
# (https://github.com/materialsproject/pymatgen-analysis-defects/pull/188)
37-
# TODO: Remove once new pymatgen-analysis-defects released
3835
]
3936

4037
[project.urls]

tests/test_chemical_potentials.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -681,8 +681,8 @@ def check_O2_entry(self, cp):
681681

682682
def test_api_keys_errors(self):
683683
api_key_error_start = ValueError(
684-
"The supplied API key (``api_key`` or 'PMG_MAPI_KEY' in your ``~/.pmgrc.yaml`` or "
685-
"``~/.config/.pmgrc.yaml file;"
684+
"The supplied API key (either ``api_key`` or 'PMG_MAPI_KEY' in ``~/.pmgrc.yaml`` or "
685+
"``~/.config/.pmgrc.yaml``;"
686686
)
687687
with pytest.raises(ValueError) as e:
688688
chemical_potentials.CompetingPhases(

0 commit comments

Comments
 (0)