Skip to content

Commit

Permalink
Update requirements.
Browse files Browse the repository at this point in the history
  • Loading branch information
knc6 committed Aug 18, 2023
1 parent 5da17b6 commit e3c2c85
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
6 changes: 4 additions & 2 deletions dev-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ autograd==1.3
Babel==2.9.1
bokeh==2.4.2
cachetools==4.2.4
certifi==2021.10.8
certifi==2023.7.22
#certifi==2021.10.8
cffi==1.15.0
charset-normalizer==2.0.9
cif2cell==2.0.0a3
Expand Down Expand Up @@ -139,7 +140,8 @@ toml==0.10.2
tomli==2.0.0
toolz==0.11.2
torch==1.10.1
tornado==6.1
tornado==6.3.3
#tornado==6.1
tqdm==4.62.3
tweedledum==1.1.1
typing_extensions==4.0.1
Expand Down
9 changes: 6 additions & 3 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ autograd==1.3
Babel==2.9.1
bokeh==2.4.2
cachetools==4.2.4
certifi==2021.10.8
certifi==2023.7.22
#certifi==2021.10.8
cffi==1.15.0
charset-normalizer==2.0.9
cif2cell==2.0.0a3
Expand Down Expand Up @@ -84,7 +85,8 @@ pyasn1-modules==0.2.8
pybind11==2.8.1
PyCifRW==4.4
pycparser==2.21
Pygments==2.10.0
Pygments==2.14
#Pygments==2.10.0
pyparsing==3.0.6
pyrsistent==0.18.0
pytest==6.2.5
Expand Down Expand Up @@ -141,7 +143,8 @@ toml==0.10.2
tomli==2.0.0
toolz==0.11.2
torch==1.10.1
tornado==6.1
tornado==6.3.3
#tornado==6.1
tqdm==4.62.3
tweedledum==1.1.1
typing_extensions==4.0.1
Expand Down
5 changes: 5 additions & 0 deletions jarvis/core/atoms.py
Original file line number Diff line number Diff line change
Expand Up @@ -1340,6 +1340,11 @@ def get_string(self, cart=True, sort_order="X"):
sort_order: sort by chemical properties of
elements. Default electronegativity.
"""
from jarvis.io.vasp.inputs import Poscar

return Poscar(self).to_string()
### Might be a bug while sorting

system = str(self.composition.formula)
header = (
str(system)
Expand Down

0 comments on commit e3c2c85

Please sign in to comment.