Skip to content

Commit cd430a7

Browse files
committed
v2023.06.23
1 parent b5a44ca commit cd430a7

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

CHANGES.rst

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

4+
v2023.6.23
5+
----------
6+
* PR #3062 from @arosen93 asefix
7+
Closes #3061. @JaGeo
8+
* PR #3030 from @lbluque master
9+
Remove superfluous structure argument docstring from `SQSTransformation` init
10+
* PR #3031 from @kavanase master
11+
This is a quick fix to allow direct initialisation of the `DictSet` class, which was possible before but broke in https://github.com/materialsproject/pymatgen/pull/2972 due to the `Yb_2` check querying `self.CONFIG`, which is only defined if `DictSet` was being initialised from a subclass and not directly.
12+
* PR #3015 from @lbluque neighbors
13+
Optimized cython code in `find_points_in_spheres`, getting ~5x faster runtime.
14+
415
v2023.5.31
516
----------
617
- Breaking: Default ``user_potcar_settings`` to ``{"W": "W_sv"}`` in all input sets if ``user_potcar_functional == "PBE_54"`` `#3022 <https://github.com/materialsproject/pymatgen/pull/3022>`_

pymatgen/core/tests/test_structure.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1130,7 +1130,7 @@ def test_from_spacegroup(self):
11301130
[[0, 0, 0], [0.5, 0.5, 0.5]],
11311131
)
11321132

1133-
with pytest.raises(ValueError, match="Supplied species and coords lengths (1 vs 2) are different"):
1133+
with pytest.raises(ValueError, match=r"Supplied species and coords lengths \(1 vs 2\) are different"):
11341134
Structure.from_spacegroup(
11351135
"Pm-3m",
11361136
Lattice.cubic(3),

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
include=["pymatgen.*", "pymatgen.analysis.*", "pymatgen.io.*", "pymatgen.ext.*", "cmd_line"],
2929
exclude=["pymatgen.*.tests", "pymatgen.*.*.tests", "pymatgen.*.*.*.tests"],
3030
),
31-
version="2023.05.31",
31+
version="2023.06.23",
3232
python_requires=">=3.8",
3333
install_requires=[
3434
"frozendict",

0 commit comments

Comments
 (0)