Skip to content

Commit 15c3329

Browse files
authored
Merge pull request #254 from spglib/release-0.5.0
Release v0.5.0
2 parents 11bf09a + 011337c commit 15c3329

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

.github/workflows/deploy.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,14 @@ jobs:
2727
pip install build
2828
python -m build --wheel
2929
- name: Publish package to TestPyPI
30+
if: ${{ contains(github.ref, 'rc') }}
3031
uses: pypa/gh-action-pypi-publish@release/v1
3132
with:
3233
repository-url: https://test.pypi.org/legacy/
3334
verbose: true
3435
attestations: false
3536
- name: Publish package to PyPI
37+
if: ${{ !contains(github.ref, 'rc') }}
3638
uses: pypa/gh-action-pypi-publish@release/v1
3739
with:
3840
verbose: true

docs/changelog.md

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

3+
## v0.5.0 (19 Jan. 2026)
4+
5+
- The following modules are separated into subpackages: `spgrep.group`, `spgrep.representation`, `spgrep.pointgroup`, `spgrep.irreps`, `spgrep.tensor`, and `spgrep.transform`.
6+
- Port `enumerate_point_subgroup` from spgrep-modulation
7+
- Require `spglib>=2.7` as dependency
8+
39
## v0.4.0 (15 Nov. 2025)
410

511
- Drop Python 3.9 support

docs/development/development.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
git clone git@github.com:spglib/spgrep.git
77
cd spgrep
88
uv sync --all-extras
9-
pre-commit install
9+
prek install
1010

11-
# Run pre-commit manually
12-
pre-commit run --all-file
11+
# Run prek manually
12+
prek run --all-file
1313
```
1414

1515
## How to compile documents

0 commit comments

Comments
 (0)