Skip to content

Commit 140b8cf

Browse files
authored
Merge branch 'main' into main
2 parents d24830d + a8785e6 commit 140b8cf

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,6 @@ dmypy.json
135135
# Pycharm
136136
.idea/
137137

138-
# Serena IDE configuration
139138
.serena/
140139

141140
# Internal documentation

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ exclude: ".*\\.csv$"
66

77
repos:
88
- repo: https://github.com/pre-commit/pre-commit-hooks
9-
rev: v5.0.0
9+
rev: v6.0.0
1010
hooks:
1111
- id: trailing-whitespace
1212
- id: end-of-file-fixer
@@ -35,7 +35,7 @@ repos:
3535

3636
# Format TOML files
3737
- repo: https://github.com/macisamuele/language-formatters-pre-commit-hooks
38-
rev: v2.14.0
38+
rev: v2.15.0
3939
hooks:
4040
- id: pretty-format-toml
4141
args: [--autofix, --indent, '4']
@@ -47,7 +47,7 @@ repos:
4747
# flake8-functions checks functions quality: https://pypi.org/project/flake8-functions/
4848
# flake8-bugbear detects some common bugs: https://github.com/PyCQA/flake8-bugbear
4949
- repo: https://github.com/pyCQA/flake8
50-
rev: 7.1.2
50+
rev: 7.3.0
5151
hooks:
5252
- id: flake8
5353
args: [--config, .flake8, --verbose, reproschema]

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@ git clone https://github.com/<your github>/reproschema-py.git
1919
cd reproschema-py
2020
pip install -e .
2121
```
22+
#### Notes on the reproschema model
23+
This repository uses the `pydantic` representation of the `reproschema` model, defined in [model.py](https://github.com/ReproNim/reproschema-py/blob/main/reproschema/models/model.py).
24+
The `pydantic` model is automatically generated from the LinkML model maintained in the [ReproNim/reproschema repository](https://github.com/ReproNim/reproschema).
25+
**All changes to the model should be made in the LinkML source in that repository.**
26+
2227
#### Style
2328
This repo uses pre-commit to check styling.
2429
- Install pre-commit with pip: `pip install pre-commit`

0 commit comments

Comments
 (0)