Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,14 @@ jobs:
pip install build
python -m build --wheel
- name: Publish package to TestPyPI
if: ${{ contains(github.ref, 'rc') }}
uses: pypa/gh-action-pypi-publish@release/v1
with:
repository-url: https://test.pypi.org/legacy/
verbose: true
attestations: false
- name: Publish package to PyPI
if: ${{ !contains(github.ref, 'rc') }}
uses: pypa/gh-action-pypi-publish@release/v1
with:
verbose: true
Expand Down
6 changes: 6 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## v0.5.0 (19 Jan. 2026)

- The following modules are separated into subpackages: `spgrep.group`, `spgrep.representation`, `spgrep.pointgroup`, `spgrep.irreps`, `spgrep.tensor`, and `spgrep.transform`.
- Port `enumerate_point_subgroup` from spgrep-modulation
- Require `spglib>=2.7` as dependency

## v0.4.0 (15 Nov. 2025)

- Drop Python 3.9 support
Expand Down
6 changes: 3 additions & 3 deletions docs/development/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
git clone git@github.com:spglib/spgrep.git
cd spgrep
uv sync --all-extras
pre-commit install
prek install

# Run pre-commit manually
pre-commit run --all-file
# Run prek manually
prek run --all-file
```

## How to compile documents
Expand Down
Loading