forked from hackingmaterials/atomate
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
formatting (just to trigger CI with new pymatgen version)
- Loading branch information
Showing
4 changed files
with
10 additions
and
13 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
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 |
---|---|---|
@@ -1,8 +1,3 @@ | ||
from monty.os.path import zpath | ||
from monty.serialization import loadfn | ||
|
||
from atomate.vasp.config import HALF_KPOINTS_FIRST_RELAX | ||
|
||
""" | ||
This module defines tasks that support running vasp in various ways. | ||
""" | ||
|
@@ -33,12 +28,14 @@ | |
from custodian.vasp.jobs import VaspJob, VaspNEBJob | ||
from custodian.vasp.validators import VaspFilesValidator, VasprunXMLValidator | ||
from fireworks import FiretaskBase, FWAction, explicit_serialize | ||
from monty.os.path import zpath | ||
from monty.serialization import loadfn | ||
from pymatgen.electronic_structure.boltztrap import BoltztrapRunner | ||
from pymatgen.io.vasp import Incar, Kpoints, Poscar, Potcar | ||
from pymatgen.io.vasp.sets import get_vasprun_outcar | ||
|
||
from atomate.utils.utils import env_chk, get_logger | ||
from atomate.vasp.config import CUSTODIAN_MAX_ERRORS | ||
from atomate.vasp.config import CUSTODIAN_MAX_ERRORS, HALF_KPOINTS_FIRST_RELAX | ||
|
||
__author__ = "Anubhav Jain <[email protected]>" | ||
__credits__ = "Shyue Ping Ong <ong.sp>" | ||
|
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 |
---|---|---|
@@ -1,5 +1,8 @@ | ||
# Copyright (c) Pymatgen Development Team. | ||
# Distributed under the terms of the MIT License. | ||
""" | ||
Deployment file to facilitate releases. | ||
Copyright (c) Pymatgen Development Team. | ||
Distributed under the terms of the MIT License. | ||
""" | ||
|
||
import json | ||
import os | ||
|
@@ -11,10 +14,6 @@ | |
|
||
from atomate import __version__ | ||
|
||
""" | ||
Deployment file to facilitate releases. | ||
""" | ||
|
||
__author__ = "Shyue Ping Ong, Anubhav Jain" | ||
__email__ = "[email protected]" | ||
__date__ = "Sep 1, 2014" | ||
|