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
40 changes: 40 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: CI

on:
pull_request:
push:
branches:
- main

jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-python@v6
with:
python-version: "3.x"
- uses: pre-commit/action@v3.0.1

tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version:
- "3.11"
name: Check Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v5

- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}

- name: Download uv
uses: astral-sh/setup-uv@v6

- name: Test package
run: uv run --group test pytest
7 changes: 7 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: "v0.13.2"
hooks:
- id: ruff-format
- id: ruff-check
args: [ "--fix", "--show-fixes", "--unsafe-fixes"]
27 changes: 14 additions & 13 deletions documentation/conf.py
Original file line number Diff line number Diff line change
@@ -1,21 +1,22 @@
import os
import sys
sys.path.insert(0, os.path.abspath('..'))

project = 'PyCLM'
copyright = '2026, Harrison-Oatman'
author = 'Harrison-Oatman'
release = '0.1.0'
sys.path.insert(0, os.path.abspath(".."))

project = "PyCLM"
copyright = "2026, Harrison-Oatman"
author = "Harrison-Oatman"
release = "0.1.0"

extensions = [
'myst_parser',
'sphinx.ext.autodoc',
'sphinx.ext.viewcode',
'sphinx.ext.napoleon',
"myst_parser",
"sphinx.ext.autodoc",
"sphinx.ext.viewcode",
"sphinx.ext.napoleon",
]

templates_path = ['_templates']
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
templates_path = ["_templates"]
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]

html_theme = 'sphinx_rtd_theme'
html_static_path = ['_static']
html_theme = "sphinx_rtd_theme"
html_static_path = ["_static"]
1,564 changes: 907 additions & 657 deletions figures/bar_speed_analysis.ipynb

Large diffs are not rendered by default.

705 changes: 417 additions & 288 deletions figures/cell_movement_vis.ipynb

Large diffs are not rendered by default.

71 changes: 37 additions & 34 deletions figures/movies.ipynb

Large diffs are not rendered by default.

945 changes: 565 additions & 380 deletions figures/supplementary_figs.ipynb

Large diffs are not rendered by default.

495 changes: 285 additions & 210 deletions figures/tag-rfp_analysis.ipynb

Large diffs are not rendered by default.

Loading
Loading