Skip to content
This repository has been archived by the owner on Feb 12, 2021. It is now read-only.

Commit

Permalink
Merge pull request #5 from hitliaomq/dfttk-dev
Browse files Browse the repository at this point in the history
Bug fix
  • Loading branch information
hitliaomq authored Mar 30, 2020
2 parents dbe26c2 + 7cab113 commit 911d2b8
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Anaconda_ or Miniconda_ is required. (Another option is using virtualenv_)
#conda create -n ENV_NAME python=VERSION
conda create -n dfttk python=3.6
#Activate
conda active dfttk
conda activate dfttk
#Deactivate
conda deactivate
Expand Down
2 changes: 1 addition & 1 deletion dfttk/scripts/run_dfttk.py
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ def run_dfttk():
pconfig.add_argument("-df", "--default_functional", dest="DEFAULT_FUNCTIONAL", type=str, default="PBE",
choices=sorted(Potcar.FUNCTIONAL_CHOICES),
help="The default functional. Default: PBE")
pconfig.add_argument("-t", "--test_config", dest="TEST_CONFIG", nargs="?", const="all", default="none"
pconfig.add_argument("-t", "--test_config", dest="TEST_CONFIG", nargs="?", const="all", default="none",
choices=["all", "pymatgen", "atomate"],
help="Test for configurations. Note: currently only support for pymatgen.")
pconfig.set_defaults(func=config)
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ def readme():
'License :: OSI Approved :: MIT License',

'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8'
Expand Down

0 comments on commit 911d2b8

Please sign in to comment.