Skip to content

Commit 2ff4c72

Browse files
authored
Merge pull request #500 from ReproNim/release-prep
preparation for release 1.0.0
2 parents e679752 + 72e2a6e commit 2ff4c72

17 files changed

+193
-508
lines changed

.flake8

-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
11
[flake8]
22
max-line-length=79
3-
exclude =
4-
scripts/editProperties.py

.github/workflows/publishdocs.yaml

+13
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,19 @@ jobs:
1212
- name: Checkout
1313
uses: actions/checkout@v4
1414

15+
- name: Set up Python
16+
uses: actions/setup-python@v4
17+
with:
18+
python-version: 3.9
19+
20+
- name: Install the required python packages
21+
run: python -m pip install linkml
22+
23+
- name: Generating docs
24+
run: |
25+
gen-doc -d docs/schema/doc-linkml-autogen linkml-schema/reproschema.yaml
26+
gen-erdiagram linkml-schema/reproschema.yaml > docs/schema/erdiagram-autogen.md
27+
1528
- name: Deploy docs
1629
uses: mhausenblas/mkdocs-deploy-gh-pages@master
1730
env:

.github/workflows/validate_and_release.yml

-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ jobs:
7272
mv reproschema.jsonld releases/${{ inputs.version }}/reproschema.jsonld
7373
mv reproschema.nt releases/${{ inputs.version }}/reproschema.nt
7474
mv reproschema.ttl releases/${{ inputs.version }}/reproschema.ttl
75-
# python scripts/makeRelease.py ${{ inputs.version }}
7675
7776
- name: Open pull requests to add files
7877
uses: peter-evans/create-pull-request@v6

.gitignore

+5-1
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,12 @@ __pycache__
66

77
.idea/
88

9-
node_modules
109
local_data
1110

11+
# ignore linkml auto generated doc
12+
docs/schema/doc-linkml-autogen
13+
docs/schema/erdiagram-autogen.md
14+
15+
node_modules
1216
package-lock.json
1317
package.json

.pre-commit-config.yaml

+5
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ repos:
77
- id: trailing-whitespace
88
- id: end-of-file-fixer
99
- id: check-yaml
10+
exclude: |
11+
(?x)^(
12+
docs/specification/.*
13+
| mkdocs.yml
14+
)$
1015
- id: check-json
1116
- id: check-ast
1217
- id: check-added-large-files

README.md

+32-20
Original file line numberDiff line numberDiff line change
@@ -19,37 +19,49 @@ This repository contains:
1919
- a example of [a protocol based on the reproschema](./examples)
2020
- the [documentation](./docs)
2121

22+
## Developing ReproSchema
2223

23-
## Licenses
24+
### Updating the schema
2425

25-
### Code
26+
As of release 1.0.0, a linked data modeling language, [LinkML](https://linkml.io/linkml/), is used to create
27+
a [YAML file](linkml-schema/reproschema.yaml) with the schema.
2628

27-
The content of this repository is distributed under the [Apache 2.0 license](./LICENSE).
29+
The [context file](contexts/reproschema) was automatically generated using LinkML,
30+
and then manually curated in order to support all the reproschema feature.
2831

29-
### Documentation
32+
#### Style
3033

31-
<a rel="license" href="http://creativecommons.org/licenses/by/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by/4.0/88x31.png" /></a><br />The corresponding documentation is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.
34+
This repo uses pre-commit to check styling.
35+
- Install pre-commit with pip: `pip install pre-commit`
36+
- In order to use it with the repository, you have to run `run pre-commit install` in the root directory the first time you use it.
3237

33-
## Contributors
3438

35-
https://github.com/ReproNim/reproschema/graphs/contributors
39+
### Release
40+
Upon release, there are additional formats, `jsonsld`, `turtle`, `n-triples`
41+
and `pydantic` that are created using `LinkML` tools, `reproschema-py`,
42+
and [reproschema-specific script](./scripts/fix_pydantic.py) to "fix" the `pydantic` format.
43+
The entire process is automated in the GitHub Action Workflow:
44+
[Validate and Release](.github/workflows/validate_and_release.yml).
45+
This workflow must be manually triggered by the core developers once a new release is ready.
46+
All the releases can be found in [releases directory](./releases).
47+
48+
### Updating model in reproschema-py
49+
Another GitHub Action Workflow: [ Create Pull Request to reproschema-py](.github/workflows/push_reproschema_py.yml)
50+
is responsible for creating pull request to the `reproschema-py` Python library with
51+
the new version of pydantic model and context.
52+
The workflow is currently also triggered manually by the core developers.
3653

37-
### Developer notes
38-
To run the Python scripts in the scripts directory, you will need to install the
39-
following libraries via pip
4054

41-
- reproschema (makeRelease.py)
42-
- pytablewriter (editProperties.py)
55+
## Licenses
56+
57+
### Code
4358

44-
To make a new release:
59+
The content of this repository is distributed under the [Apache 2.0 license](./LICENSE).
4560

46-
```bash
47-
python scripts/makeRelease.py <version>
48-
python scripts/editProperties.py <version>
49-
```
61+
### Documentation
5062

51-
In addition, this repo uses pre-commit to check styling.
63+
<a rel="license" href="http://creativecommons.org/licenses/by/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by/4.0/88x31.png" /></a><br />The corresponding documentation is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.
5264

53-
Install: `pip install pre-commit`
65+
## Contributors
5466

55-
Use: run `pre-commit install` in the root directory of the repo.
67+
https://github.com/ReproNim/reproschema/graphs/contributors

docs/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ things are to use the ReproSchema but some "big picture" conceptual understandin
1717
could save you from a lot of confusion. 😉
1818

1919
- Not sure how the project is organized? Check out the [project structure](./project-structure.md) page.
20-
- Want more details on how the `Reproschema` itself is structured: check out our [schema page](./schema.md)
20+
- Want more details on how the `Reproschema` itself is structured: check out our [schema page](./schema/schema.md)
2121

2222
<!-- - If you want to use the schema to create your own questionnaire: check out our
2323

docs/project-structure.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ The ReproSchema is like a blueprint for research projects, ensuring everyone col
3737

3838
There is also an [`example`](https://github.com/ReproNim/reproschema/tree/master/examples)
3939
schema that can help give you a quick overview of what the protocol and activity
40-
for a study might look like. For more details see the [schema section](./schema.md).
40+
for a study might look like. For more details see the [schema section](./schema/schema.md).
4141

4242
## [reproschema-library](https://github.com/ReproNim/reproschema-library)
4343

0 commit comments

Comments
 (0)