Skip to content

Commit f4dd446

Browse files
committed
v3.0.1 release
Former-commit-id: 96c05624eb8ae3ba907a4b9e280f2c631747fda9 [formerly dee2e96] Former-commit-id: 50e0816876d1de756617d1383ff84d889f043b50
1 parent 1b07f5c commit f4dd446

File tree

7 files changed

+17
-23
lines changed

7 files changed

+17
-23
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.1
5+
------
6+
1. Minor bug fixes for cifio.
7+
2. Py3k updates for abinitio.
8+
49
v3.0.0
510
------
611
* Pymatgen is now completely Python 2.7 and Python 3.x compatible!

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.1
5+
------
6+
1. Minor bug fixes for cifio.
7+
2. Py3k updates for abinitio.
8+
49
v3.0.0
510
------
611
* Pymatgen is now completely Python 2.7 and Python 3.x compatible!

docs/latest_changes.rst

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

4-
v3.0.0
4+
v3.0.1
55
------
6-
* Pymatgen is now completely Python 2.7 and Python 3.x compatible!
7-
* Spglib and pyhull have been updated to support Python 3.x.
8-
* Completely rewritten pure python cifio module (courtesy of William Davidson
9-
Richards) removed dependency on PyCIFRW, which has been causing many issues
10-
with installation.
11-
* Structure and Molecule now supports a very convenient to() and from_str and
12-
from_file functionality. Instead of trying to load the appropriate parser,
13-
you can output and read from the appropriate formats directly. See example
14-
usage.
15-
* ~50% speedup to LinearAssignment code.
16-
* Continuous integration and contribution guidelines now include Python 3.
17-
* **Backwards incompatible changes**
18-
* matgenie.py has now been renamed simply "pmg" for brevity.
19-
* All deprecated methods in pymatgen 2.x have been removed. E.g.,
20-
pymatgen.core.structure_modifier is no longer available.
21-
* Pymatgen classes now uses the as_dict() method protocol implemented in the
22-
Monty package. The to_dict property is now deprecated and will be removed
23-
in pymatgen v3.1.
24-
* Update main docs page examples with the new Structure to, from formats.
6+
1. Minor bug fixes for cifio.
7+
2. Py3k updates for abinitio.

docs/pymatgen.io.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Subpackages
77
.. toctree::
88

99
pymatgen.io.abinitio
10+
pymatgen.io.gwwrapper
1011
pymatgen.io.vaspio
1112

1213
Submodules

pymatgen/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"Shreyas Cholia", "Vincent L Chevrier",
55
"Rickard Armiento"])
66
__date__ = "Sep 12 2014"
7-
__version__ = "3.0.0"
7+
__version__ = "3.0.1"
88

99
#Useful aliases for commonly used objects and modules.
1010

pymatgen/core/structure.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -479,7 +479,7 @@ def __eq__(self, other):
479479
return False
480480
if len(self) != len(other):
481481
return False
482-
if self._lattice != other._lattice:
482+
if self.lattice != other.lattice:
483483
return False
484484
for site in self:
485485
if site not in other:

setup.py

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

0 commit comments

Comments
 (0)