Skip to content

Commit

Permalink
Merge pull request #19 from celery/celery-5-high-level-architecture
Browse files Browse the repository at this point in the history
Celery 5 High Level Architecture
  • Loading branch information
thedrow committed May 27, 2020
2 parents 51afb5e + 92c4126 commit 30b287d
Show file tree
Hide file tree
Showing 16 changed files with 1,988 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
_build/
.ropeproject/
5 changes: 3 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,12 @@ cache:

install:
- pyenv global 3.7
- pip3 install --user 'sphinx>=2.0'
- pip3 install --user -r requirements.txt
- npm install prettyjson

script:
- bash ci/errata.sh pre ./ content/
- rm -rf content/
- mkdir _static/
- make html linkcheck -j2
- bash ci/errata.sh post _build/html || true
- bash ci/errata.sh post _build/html
2 changes: 2 additions & 0 deletions accepted/README.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
.. vale off
Approved CEPs
=============

Expand Down
2 changes: 1 addition & 1 deletion ci/errata.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ OS="Linux"
# [TODO]: Specify the version of `vale` and `blocktest` to use.
#
# See `/content/` for configuration details.
VALE="1.7.1"
VALE="2.2.0"
BLOCKTEST="0.1.1"

# [TODO]: Specify the type of front matter you're using.
Expand Down
7 changes: 5 additions & 2 deletions conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
#
html_theme = 'alabaster'
html_theme = 'sphinx_celery'

# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
Expand All @@ -73,4 +73,7 @@
# -- Options for intersphinx extension ---------------------------------------

# Example configuration for intersphinx: refer to the Python standard library.
intersphinx_mapping = {'https://docs.python.org/': None}
intersphinx_mapping = {
'python': ('https://docs.python.org/', None),
'celery4': ('http://docs.celeryproject.org/en/v4.3.0', None)
}
2 changes: 2 additions & 0 deletions draft/README.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
.. vale off
Draft CEPs
==========

Expand Down
Binary file added draft/celery-5-architecture-figure01.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 30b287d

Please sign in to comment.