Skip to content

Commit 5ba48da

Browse files
committed
Update dev docs
Former-commit-id: 9ce8f152315d36226f616b48eb4cc041b75f7db6 [formerly 04356a3] Former-commit-id: b9e7d5eac38661b3b8eaaf0e0120a73370d440e6
1 parent cec8569 commit 5ba48da

File tree

6 files changed

+24
-12
lines changed

6 files changed

+24
-12
lines changed

CHANGES.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
Change log
22
==========
33

4+
v3.0.2
5+
------
6+
1. Consistent use of unicode throughout pymatgen.
7+
2. Minor bug fixes.
8+
49
v3.0.1
510
------
611
1. Minor bug fixes for cifio.

dev_scripts/profile_xml.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
2+
from pymatgen.io.vaspio import Vasprun
3+
4+
def parse_xml():
5+
v = Vasprun("../test_files/vasprun.xml")
6+
7+
if __name__ == "__main__":
8+
import timeit
9+
print(timeit.timeit("parse_xml()", setup="from __main__ import parse_xml",
10+
number=1))

docs/change_log.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
Change log
22
==========
33

4+
v3.0.2
5+
------
6+
1. Consistent use of unicode throughout pymatgen.
7+
2. Minor bug fixes.
8+
49
v3.0.1
510
------
611
1. Minor bug fixes for cifio.

docs/latest_changes.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Change log
22
==========
33

4-
v3.0.1
4+
v3.0.2
55
------
6-
1. Minor bug fixes for cifio.
7-
2. Py3k updates for abinitio.
6+
1. Consistent use of unicode throughout pymatgen.
7+
2. Minor bug fixes.

docs/pymatgen.util.rst

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,6 @@ pymatgen.util.io_utils module
3434
:undoc-members:
3535
:show-inheritance:
3636

37-
pymatgen.util.lazy module
38-
-------------------------
39-
40-
.. automodule:: pymatgen.util.lazy
41-
:members:
42-
:undoc-members:
43-
:show-inheritance:
44-
4537
pymatgen.util.num_utils module
4638
------------------------------
4739

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def get_spglib_ext():
4747
setup(
4848
name="pymatgen",
4949
packages=find_packages(),
50-
version="3.0.1",
50+
version="3.0.2",
5151
install_requires=["numpy>=1.8", "pyhull>=1.5.2",
5252
"requests>=2.3.0", "pybtex>=0.18", "pyyaml>=3.11",
5353
"monty>=0.5.3", "six>=1.7.3"],

0 commit comments

Comments
 (0)