This repository was archived by the owner on Feb 20, 2026. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +396
-6
lines changed
Expand file tree Collapse file tree 5 files changed +396
-6
lines changed Original file line number Diff line number Diff line change 11version : 2.1
22orbs :
33 # See the orb documentation here: https://circleci.com/developer/orbs/orb/circleci/python
4- python : circleci/python@1.5 .0
4+ python : circleci/python@3.3 .0
55
66# See: https://circleci.com/docs/2.0/configuration-reference/#jobs
77jobs :
88 build :
99 docker :
10- - image : cimg/python:3.10.2
10+ - image : cimg/python:3.12
1111 steps :
1212 - checkout
1313 - python/install-packages :
Original file line number Diff line number Diff line change 1+ 3.12
Original file line number Diff line number Diff line change @@ -11,9 +11,7 @@ Main project repository: [elabftw/elabftw](https://github.com/elabftw/elabftw).
1111~~~ bash
1212git clone https://github.com/elabftw/elabdoc
1313cd elabdoc
14- python -m venv venv
15- source venv/bin/activate
16- pip install -r requirements.txt
14+ uv sync
1715~~~
1816
1917## Config examples
@@ -26,7 +24,7 @@ To generate the HTML documentation:
2624
2725~~~ bash
2826cd doc
29- make html
27+ uv run make html
3028~~~
3129
3230Then point your browser to the ` _build/html/index.html ` file inside the ` doc/ ` folder.
Original file line number Diff line number Diff line change 1+ [project ]
2+ name = " elabdoc"
3+ version = " 5.3.0"
4+ description = " eLabFTW documentation repository"
5+ readme = " README.md"
6+ requires-python = " >=3.12"
7+ dependencies = [
8+ " sphinx>=8.2.3" ,
9+ " sphinx-rtd-theme>=3.0.2" ,
10+ ]
You can’t perform that action at this time.
0 commit comments