Skip to content

Commit 64d45bb

Browse files
authored
Merge branch 'main' into fixFirstProgressReport
2 parents 467f307 + ae77772 commit 64d45bb

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+3371
-372
lines changed

.git-blame-ignore-revs

Whitespace-only changes.

.github/workflows/check-lock.yml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Check uv.lock
2+
3+
on:
4+
pull_request:
5+
paths:
6+
- "pyproject.toml"
7+
- "uv.lock"
8+
push:
9+
paths:
10+
- "pyproject.toml"
11+
- "uv.lock"
12+
13+
jobs:
14+
check-lock:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: actions/checkout@v4
18+
19+
- name: Install uv
20+
run: |
21+
curl -LsSf https://astral.sh/uv/install.sh | sh
22+
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
23+
24+
- name: Check uv.lock is up to date
25+
run: uv lock --check

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
.DS_Store
2+
scratch/
23

34
# Byte-compiled / optimized / DLL files
45
__pycache__/
@@ -162,3 +163,6 @@ cython_debug/
162163
# and can be added to the global gitignore or merged into this file. For a more nuclear
163164
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
164165
#.idea/
166+
167+
# vscode
168+
.vscode/

.pre-commit-config.yaml

+9
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,12 @@ repos:
1313
- id: ruff-format
1414
- id: ruff
1515
args: [--fix, --exit-non-zero-on-fix]
16+
17+
- repo: local
18+
hooks:
19+
- id: uv-lock-check
20+
name: Check uv.lock is up to date
21+
entry: uv lock --check
22+
language: system
23+
files: ^(pyproject\.toml|uv\.lock)$
24+
pass_filenames: false

CLAUDE.md

+26-11
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,31 @@ This document contains critical information about working with this codebase. Fo
2525
- New features require tests
2626
- Bug fixes require regression tests
2727

28-
4. Version Control
29-
- Commit messages: conventional format (fix:, feat:)
30-
- PR scope: minimal, focused changes
31-
- PR requirements: description, test plan
32-
- Always include issue numbers
33-
- Quote handling:
34-
```bash
35-
git commit -am "\"fix: message\""
36-
gh pr create --title "\"title\"" --body "\"body\""
37-
```
28+
- For commits fixing bugs or adding features based on user reports add:
29+
```bash
30+
git commit --trailer "Reported-by:<name>"
31+
```
32+
Where `<name>` is the name of the user.
33+
34+
- For commits related to a Github issue, add
35+
```bash
36+
git commit --trailer "Github-Issue:#<number>"
37+
```
38+
- NEVER ever mention a `co-authored-by` or similar aspects. In particular, never
39+
mention the tool used to create the commit message or PR.
40+
41+
## Pull Requests
42+
43+
- Create a detailed message of what changed. Focus on the high level description of
44+
the problem it tries to solve, and how it is solved. Don't go into the specifics of the
45+
code unless it adds clarity.
46+
47+
- Always add `jerome3o-anthropic` and `jspahrsummers` as reviewer.
48+
49+
- NEVER ever mention a `co-authored-by` or similar aspects. In particular, never
50+
mention the tool used to create the commit message or PR.
51+
52+
## Python Tools
3853

3954
## Code Formatting
4055

@@ -96,4 +111,4 @@ This document contains critical information about working with this codebase. Fo
96111
- Keep changes minimal
97112
- Follow existing patterns
98113
- Document public APIs
99-
- Test thoroughly
114+
- Test thoroughly

0 commit comments

Comments
 (0)