Skip to content
Open
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
5 changes: 1 addition & 4 deletions .readthedocs.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
version: 2

build:
os: ubuntu-22.04
tools:
python: '3.11'

python:
install:
- requirements: doc_requirements.txt

- requirements: doc_requirements.txt
sphinx:
builder: html
fail_on_warning: true
4 changes: 4 additions & 0 deletions 010_replace_rabbitmq/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
*.aux
*.fdb_latexmk
*.fls
*.synctex.gz
4 changes: 4 additions & 0 deletions 010_replace_rabbitmq/misc/tatzelwurm-arch-UML-lifetime.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions 010_replace_rabbitmq/misc/tatzelwurm-arch-legacy-arch.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions 010_replace_rabbitmq/misc/tatzelwurm-arch-tatz-arch.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
590 changes: 590 additions & 0 deletions 010_replace_rabbitmq/readme.md

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ Accepted AEPs can be easily browsed and read on the [online documentation](https
| 007 | implemented | [Abstract and improve the file repository](007_improved_file_repository/readme.md) |
| 008 | implemented | [Allow `CalcJob`s to be actively monitored and interrupted](008_calcjob_monitors/readme.md) |
| 009 | implemented | [Improved Docker images](009_improved_docker_images/readme.md) |
| 010 | draft | [Replace RabbitMQ](010_replace_rabbitmq/readme.md) |

## Submitting an AEP

Expand Down
25 changes: 13 additions & 12 deletions _toc.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
root: README.md
subtrees:
- caption: Proposals
entries:
- file: 000_aep_guidelines/readme.md
- file: 001_drop_python2/readme.md
- file: 002_dependency_management/readme.md
- file: 003_adopt_nep_29/readme.md
- file: 004_calcjob_importer/readme.md
- file: 005_exportformat/readme.md
- file: 006_efficient_object_store_for_repository/readme.md
- file: 007_improved_file_repository/readme.md
- file: 008_calcjob_monitors/readme.md
- file: 009_improved_docker_images/readme.md
- caption: Proposals
entries:
- file: 000_aep_guidelines/readme.md
- file: 001_drop_python2/readme.md
- file: 002_dependency_management/readme.md
- file: 003_adopt_nep_29/readme.md
- file: 004_calcjob_importer/readme.md
- file: 005_exportformat/readme.md
- file: 006_efficient_object_store_for_repository/readme.md
- file: 007_improved_file_repository/readme.md
- file: 008_calcjob_monitors/readme.md
- file: 009_improved_docker_images/readme.md
- file: 010_replace_rabbitmq/readme.md
6 changes: 5 additions & 1 deletion conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@
project = html_title = "AiiDA Enhancement Proposals"
author = "The AiiDA team"

extensions = ["myst_parser", "sphinx_external_toc"]
extensions = [
"myst_parser",
"sphinx_external_toc",
]

exclude_patterns = [".github", ".tox", ".vscode", "_build"]
external_toc_exclude_missing = True
html_theme = "furo"
Expand Down