-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
13 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,9 +7,16 @@ | |
|
||
from __future__ import annotations | ||
|
||
from importlib.metadata import PackageNotFoundError, version | ||
|
||
__author__ = "Shyue Ping Ong" | ||
__copyright__ = "Copyright 2014, The Materials Virtual Lab" | ||
__version__ = "2024.7.12" | ||
__maintainer__ = "Shyue Ping Ong" | ||
__email__ = "[email protected]" | ||
__date__ = "Oct 12 2020" | ||
|
||
try: | ||
__version__ = version("pymatgen") | ||
except PackageNotFoundError: # pragma: no cover | ||
# package is not installed | ||
pass |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters