Skip to content

Commit 6cf3ea8

Browse files
authored
V0.2.0 release changelog, pyproject.toml update, codecov fix (#148)
* update changelog for v0.2.0 * minor modification for PR template * formatting fixes * formatting and typos * remove contributors bc they aren't linked * update pyproject.toml to v0.2.0 * lint * try regressing codecov
1 parent 80a4802 commit 6cf3ea8

File tree

4 files changed

+34
-15
lines changed

4 files changed

+34
-15
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Include a summary of major changes in bullet points:
77

88
## Checklist
99

10-
Work-in-progress pull requests are encouraged, but please enable the draft status on your PR.
10+
<!-- Work-in-progress pull requests are encouraged, but please enable the draft status on your PR. -->
1111

1212
Before a pull request can be merged, the following items must be checked:
1313

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
--ignore=tests/models/test_metatensor.py
4848
4949
- name: Upload coverage to Codecov
50-
uses: codecov/codecov-action@v5
50+
uses: codecov/codecov-action@v5.4.0
5151
with:
5252
token: ${{ secrets.CODECOV_TOKEN }}
5353
slug: radical-ai/torch-sim
@@ -119,7 +119,7 @@ jobs:
119119
pytest --cov=torch_sim --cov-report=xml ${{ matrix.model.test_path }}
120120
121121
- name: Upload coverage to Codecov
122-
uses: codecov/codecov-action@v5
122+
uses: codecov/codecov-action@v5.4.0
123123
with:
124124
token: ${{ secrets.CODECOV_TOKEN }}
125125
slug: radical-ai/torch-sim

CHANGELOG.md

Lines changed: 29 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,31 @@
1-
## v0.0.1
1+
## v0.2.0
22

3-
Initial release.
3+
### Bug Fixes 🐛
4+
* Fix integrate reporting kwarg to arg error, https://github.com/Radical-AI/torch-sim/issues/113 (raised by @hn-yu)
5+
* Allow runners to take large initial batches, https://github.com/Radical-AI/torch-sim/issues/128 (raised by @YutackPark)
6+
* Add Fairchem model support for PBC, https://github.com/Radical-AI/torch-sim/issues/111 (raised by @ryanliu30)
7+
8+
### Enhancements 🛠
9+
* **[breaking]** Rename `HotSwappingAutobatcher` to `InFlightAutobatcher` and `ChunkingAutoBatcher` to `BinningAutoBatcher`, https://github.com/Radical-AI/torch-sim/pull/143 @orionarcher
10+
* Support for Orbv3, https://github.com/Radical-AI/torch-sim/pull/140, @AdeeshKolluru
11+
* Support metatensor models, https://github.com/Radical-AI/torch-sim/pull/141, @frostedoyter @Luthaf
12+
* Support for graph-pes models, https://github.com/Radical-AI/torch-sim/pull/118 @jla-gardner
13+
* Support MatterSim and fix ASE cell convention issues, https://github.com/Radical-AI/torch-sim/pull/112 @CompRhys
14+
* Implement positions only FIRE optimization, https://github.com/Radical-AI/torch-sim/pull/139 @abhijeetgangan
15+
* Allow different temperatures in batches, https://github.com/Radical-AI/torch-sim/pull/123 @orionarcher
16+
* FairChem model updates: PBC handling, test on OMat24 e-trained model, https://github.com/Radical-AI/torch-sim/pull/126 @AdeeshKolluru
17+
* FairChem model from_data_list support, https://github.com/Radical-AI/torch-sim/pull/138 @ryanliu30
18+
* New correlation function module, https://github.com/Radical-AI/torch-sim/pull/115 @stefanbringuier
19+
20+
### Documentation 📖
21+
* Imoved model documentation, https://github.com/Radical-AI/torch-sim/pull/121 @orionarcher
22+
* Plot of TorchSim module graph in docs, https://github.com/Radical-AI/torch-sim/pull/132 @janosh
423

5-
[contributors]: <> (CONTRIBUTOR SECTION)
6-
[abhijeetgangan]: https://github.com/abhijeetgangan
7-
[orionarcher]: https://github.com/orionarcher
8-
[janosh]: https://github.com/janosh
9-
[AdeeshKolluru]: https://github.com/AdeeshKolluru
10-
[CompRhys]: https://github.com/CompRhys
24+
### House-Keeping 🧹
25+
* Only install HF for fairchem tests, https://github.com/Radical-AI/torch-sim/pull/134 @CompRhys
26+
* Don't download MBD in CI, https://github.com/Radical-AI/torch-sim/pull/135 @orionarcher
27+
* Tighten graph-pes test bounds, https://github.com/Radical-AI/torch-sim/pull/143 @orionarcher
28+
29+
## v0.1.0
30+
31+
Initial release.

pyproject.toml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "torch_sim_atomistic"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
description = "A pytorch toolkit for calculating material properties using MLIPs"
55
authors = [
66
{ name = "Abhijeet Gangan", email = "[email protected]" },
@@ -47,9 +47,7 @@ test = [
4747
mace = ["mace-torch>=0.3.11"]
4848
mattersim = ["mattersim>=0.1.2"]
4949
metatensor = ["metatensor-torch >=0.7,<0.8", "metatrain[pet] >=2025.4"]
50-
orb = [
51-
"orb-models@git+https://github.com/orbital-materials/orb-models#egg=637a98d49cfb494e2491a457d9bbd28311fecf21",
52-
]
50+
orb = ["orb-models>=0.5.2"]
5351
sevenn = ["sevenn>=0.11.0"]
5452
graphpes = ["graph-pes>=0.0.34", "mace-torch>=0.3.11"]
5553
docs = [

0 commit comments

Comments
 (0)