Skip to content

Commit

Permalink
Remove typing_extensions requirement following `pymatgen-analysis-d…
Browse files Browse the repository at this point in the history
  • Loading branch information
kavanase committed May 13, 2024
1 parent 302884d commit 49edad6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
3 changes: 0 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,6 @@ dependencies = [
"vise>=0.9.0", # for eigenvalue analysis, >=0.9.0 required for SOC compatibility
"easyunfold>=0.3.6", # for efficient PROCAR parsing (and supporting SOC),
# if any dependency issues arise can make easyunfold an optional dependency
"typing-extensions" # to fix `pymatgen` typing issues
# (https://github.com/materialsproject/pymatgen-analysis-defects/pull/188)
# TODO: Remove once new pymatgen-analysis-defects released
]

[project.urls]
Expand Down
4 changes: 2 additions & 2 deletions tests/test_chemical_potentials.py
Original file line number Diff line number Diff line change
Expand Up @@ -681,8 +681,8 @@ def check_O2_entry(self, cp):

def test_api_keys_errors(self):
api_key_error_start = ValueError(
"The supplied API key (``api_key`` or 'PMG_MAPI_KEY' in your ``~/.pmgrc.yaml`` or "
"``~/.config/.pmgrc.yaml file;"
"The supplied API key (either ``api_key`` or 'PMG_MAPI_KEY' in ``~/.pmgrc.yaml`` or "
"``~/.config/.pmgrc.yaml``;"
)
with pytest.raises(ValueError) as e:
chemical_potentials.CompetingPhases(
Expand Down

0 comments on commit 49edad6

Please sign in to comment.