Skip to content

Commit

Permalink
Update dev docs
Browse files Browse the repository at this point in the history
Former-commit-id: 9ce8f152315d36226f616b48eb4cc041b75f7db6 [formerly 04356a3]
Former-commit-id: b9e7d5eac38661b3b8eaaf0e0120a73370d440e6
  • Loading branch information
shyuep committed Sep 16, 2014
1 parent cec8569 commit 5ba48da
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 12 deletions.
5 changes: 5 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Change log
==========

v3.0.2
------
1. Consistent use of unicode throughout pymatgen.
2. Minor bug fixes.

v3.0.1
------
1. Minor bug fixes for cifio.
Expand Down
10 changes: 10 additions & 0 deletions dev_scripts/profile_xml.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@

from pymatgen.io.vaspio import Vasprun

def parse_xml():
v = Vasprun("../test_files/vasprun.xml")

if __name__ == "__main__":
import timeit
print(timeit.timeit("parse_xml()", setup="from __main__ import parse_xml",
number=1))
5 changes: 5 additions & 0 deletions docs/change_log.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Change log
==========

v3.0.2
------
1. Consistent use of unicode throughout pymatgen.
2. Minor bug fixes.

v3.0.1
------
1. Minor bug fixes for cifio.
Expand Down
6 changes: 3 additions & 3 deletions docs/latest_changes.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Change log
==========

v3.0.1
v3.0.2
------
1. Minor bug fixes for cifio.
2. Py3k updates for abinitio.
1. Consistent use of unicode throughout pymatgen.
2. Minor bug fixes.
8 changes: 0 additions & 8 deletions docs/pymatgen.util.rst
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,6 @@ pymatgen.util.io_utils module
:undoc-members:
:show-inheritance:

pymatgen.util.lazy module
-------------------------

.. automodule:: pymatgen.util.lazy
:members:
:undoc-members:
:show-inheritance:

pymatgen.util.num_utils module
------------------------------

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def get_spglib_ext():
setup(
name="pymatgen",
packages=find_packages(),
version="3.0.1",
version="3.0.2",
install_requires=["numpy>=1.8", "pyhull>=1.5.2",
"requests>=2.3.0", "pybtex>=0.18", "pyyaml>=3.11",
"monty>=0.5.3", "six>=1.7.3"],
Expand Down

0 comments on commit 5ba48da

Please sign in to comment.