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
7 changes: 7 additions & 0 deletions python/metatomic_torchsim/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,13 @@ follows [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased](https://github.com/metatensor/metatomic/)

## [Version 0.1.2](https://github.com/metatensor/metatomic/releases/tag/metatomic-torchsim-v0.1.2) - 2026-04-22

### Changed

- Removed the upper-version pin on `torch-sim-atomistic` to make updating the
code in there that re-exports this package easier.

## [Version 0.1.1](https://github.com/metatensor/metatomic/releases/tag/metatomic-torchsim-v0.1.1) - 2026-04-01

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions python/metatomic_torchsim/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
ROOT = os.path.realpath(os.path.dirname(__file__))
METATOMIC_TORCH = os.path.realpath(os.path.join(ROOT, "..", "metatomic_torch"))

METATOMIC_TORCHSIM_VERSION = "0.1.1"
METATOMIC_TORCHSIM_VERSION = "0.1.2"


class sdist_generate_data(sdist):
Expand Down Expand Up @@ -106,7 +106,7 @@ def create_version_number(version):
authors = fd.read().splitlines()

install_requires = [
"torch-sim-atomistic >=0.5,<0.6",
"torch-sim-atomistic >=0.5",
"vesin >=0.5.5,<0.6",
]

Expand Down
Loading