Skip to content

Commit 456a7de

Browse files
authored
Release v2.2.0 (#113)
1 parent 9ca3dd9 commit 456a7de

File tree

3 files changed

+21
-5
lines changed

3 files changed

+21
-5
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
# v2.2.0
2+
* DevOps: Replaced `setup.py` by `pyproject.toml`, updated README and fixed CI [710fd75](https://github.com/giovannipizzi/seekpath/commit/710fd7542a307adef3a18154860b298131284499)
3+
* DevOps: Update CI and pre-commit (e.g., black to ruff, enable prospector again) [9ca3dd9](https://github.com/giovannipizzi/seekpath/commit/9ca3dd9cd9f10735db49b05b0ba468ab2558c792)
4+
* Improve `spglib` version check [d910bb3](https://github.com/giovannipizzi/seekpath/commit/d910bb372139d642ef008931c7f39adf705faaa9)
5+
* Refactor `get_BZ` and implement it as the `BZ` class [b056ae2](https://github.com/giovannipizzi/seekpath/commit/b056ae24a9cf0cd60bb1fd05d6298a019de1ec0a)
6+
* Handle `spglib` DeprecationWarning [2bdcc05](https://github.com/giovannipizzi/seekpath/pull/105/commits/2bdcc052b20e41b51e663022854239c4998e9163)
7+
8+
9+
10+
# v2.1.0
11+
* More recent Python version [154e681](https://github.com/giovannipizzi/seekpath/commit/154e681125f28074475415c78e4b99c51cb3aa02)
12+
* `k path` for the original cell without standardization [1739078](https://github.com/giovannipizzi/seekpath/commit/1739078c4531a7bd1fe695a39d7b88629661ce48)
13+
14+
115
# v2.0.0
216
- Dropped python 2 support
317
- Moved out the web tool to [tools-seekpath](https://github.com/materialscloud-org/tools-seekpath), based on [tools-barebone](https://github.com/materialscloud-org/tools-barebone), whose codebases mostly take inspiration from the web tool implemented in seekpath v1.x

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ requires = ['flit_core >=3.4,<4']
44

55
[project]
66
name = "seekpath"
7-
version = "2.1.0"
7+
dynamic = ['version']
88
description = "A module to obtain and visualize k-vector coefficients and obtain band paths in the Brillouin zone of crystal structures"
99
keywords = ["path", "band structure", "Brillouin", "crystallography", "physics", "primitive cell", "conventional cell"]
1010
readme = "README.md"
@@ -36,7 +36,7 @@ license = {text = "The MIT license"}
3636

3737
[project.urls]
3838
Homepage = "https://github.com/giovannipizzi/seekpath"
39-
Downloads = "https://github.com/giovannipizzi/seekpath/archive/v2.1.0.tar.gz"
39+
Downloads = "https://github.com/giovannipizzi/seekpath/archive/v2.2.0.tar.gz"
4040

4141
[project.optional-dependencies]
4242
bz = [

seekpath/__init__.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,17 @@
44
The seekpath module contains routines to get automatically the
55
path in a 3D Brillouin zone to plot band structures.
66
7-
Author: Giovanni Pizzi, PSI (2016-2023)
7+
Author: Giovanni Pizzi, PSI (2016-onwards)
8+
Maintainer: Timo Reents, PSI (2025-onwards)
89
910
Licence: MIT License, see LICENSE.txt file
1011
"""
1112

12-
__version__ = '2.1.0'
13+
__version__ = '2.2.0'
1314
__author__ = 'Giovanni Pizzi, PSI'
15+
__maintainer__ = 'Timo Reents, PSI'
1416
__copyright__ = (
15-
'Copyright (c), 2016-2023, Giovanni Pizzi, PAUL SCHERRER INSTITUT '
17+
'Copyright (c), 2016-2026, Giovanni Pizzi, PAUL SCHERRER INSTITUT '
1618
'(Laboratory for Materials Simulations), EPFL '
1719
'(Theory and Simulation of Materials (THEOS) and National Centre '
1820
'for Computational Design and Discovery of Novel Materials '

0 commit comments

Comments
 (0)