Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
ea40f59
refactor(run_length_control): modularize into staged submodules
yafshar Dec 30, 2025
a623168
docs: migrate to full Sphinx documentation site with comprehensive gu…
yafshar Dec 30, 2025
71eb7a1
docs: fix pyproject.toml to support documentation building
yafshar Dec 30, 2025
50412ba
ci: let pip install full dependency set from pyproject.toml
yafshar Dec 30, 2025
e24dbf5
fix: prevent BLAS deadlock in multi-threaded hosts like LAMMPS + OpenMP
yafshar Dec 30, 2025
dab3cc2
style: standardize docstrings and resolve static analyzer issues
yafshar Dec 30, 2025
6c6c20d
style: resolve static analyzer issues
yafshar Dec 30, 2025
96882d0
docs: add .readthedocs.yaml for automated Read the Docs builds
yafshar Dec 30, 2025
235a57a
chore: update copyright
yafshar Dec 31, 2025
4f47676
docs: rewrite for clarity and usability
yafshar Dec 31, 2025
b951076
chore(git): ignore Sphinx build artifacts
yafshar Dec 31, 2025
bb6bd71
docs: Add GitHub edit links to all documentation pages
yafshar Dec 31, 2025
b17b03b
docs(README): streamline for better GitHub experience
yafshar Jan 1, 2026
4ebc834
Stop tracking _build/.gitkeep; only ignore _build/
yafshar Jan 1, 2026
dd780da
fix(docs): correct sys.path in conf.py to find kim_convergence module
yafshar Jan 1, 2026
15db5f8
Update README.md
yafshar Jan 2, 2026
4b5cb0d
coderabbitai review: resolve 78 issues (7 major, 26 minor, 39 nit, 6 …
yafshar Jan 3, 2026
b4a2d64
Merge branch 'refactor/run-length-control-modularization-and-docs' of…
yafshar Jan 3, 2026
090e062
minor fix
yafshar Jan 3, 2026
076ae8b
coderabbitai review: resolve issues
yafshar Jan 4, 2026
17a852b
coderabbitai review: resolve issues nits—alt text, unused-arg pragmas…
yafshar Jan 4, 2026
6888235
coderabbitai review: resolve issues
yafshar Jan 4, 2026
c331a8c
coderabbitai review: resolve issues
yafshar Jan 4, 2026
d67a452
coderabbitai review: resolve issues
yafshar Jan 4, 2026
8f2ed53
coderabbitai review: resolve 3 issues
yafshar Jan 4, 2026
e962e25
coderabbitai review: nitpick comments
yafshar Jan 4, 2026
04ececf
docs: add missing scaler classes to api.rst and fix display
yafshar Jan 4, 2026
f285cc9
doc(style): normalize tilde lengths in api.rst headings
yafshar Jan 4, 2026
582180e
doc(style): docstrings to Google format
yafshar Jan 4, 2026
9336903
coderabbitai review: resolve issues
yafshar Jan 4, 2026
b93d4fe
coderabbitai review: Replace assert with explicit runtime check
yafshar Jan 4, 2026
58872ea
Fix message
yafshar Jan 4, 2026
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
3 changes: 1 addition & 2 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install numpy scipy joblib
pip install kim-edn>1.4.0
pip install -e .
- name: Lint with flake8
run: |
pip install flake8==7.1.2 flake8-pyproject==1.2.3
Expand Down
18 changes: 18 additions & 0 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# .readthedocs.yaml
version: 2

build:
os: ubuntu-24.04
tools:
python: "3.11"

sphinx:
configuration: doc/conf.py
fail_on_warning: false

python:
install:
- method: pip
path: .
extra_requirements:
- doc
Loading