Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump mkdocstrings from 0.13.6 to 0.15.2 #325

Merged
merged 2 commits into from
Jul 20, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
19 changes: 12 additions & 7 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
#
# pip-compile
#
beautifulsoup4==4.9.3
# via mkdocstrings
certifi==2020.6.20
# via
# matplotlib
Expand Down Expand Up @@ -34,7 +32,9 @@ importlib-metadata==4.6.1
# markdown
# pep517
jinja2==2.11.3
# via mkdocs
# via
# mkdocs
# mkdocstrings
joblib==0.17.0
# via nltk
kiwisolver==1.2.0
Expand All @@ -48,24 +48,31 @@ lz4==3.1.3
markdown==3.3.2
# via
# mkdocs
# mkdocs-autorefs
# mkdocs-material
# mkdocstrings
# pymdown-extensions
markupsafe==1.1.1
# via jinja2
# via
# jinja2
# mkdocstrings
matplotlib==3.3.2
# via seaborn
mkdocs==1.1.2
# via
# -r requirements.in
# mkdocs-autorefs
# mkdocs-material
# mkdocstrings
mkdocs-autorefs==0.2.1
# via mkdocstrings
mkdocs-material==7.1.11
# via
# -r requirements.in
# mkdocs-material-extensions
mkdocs-material-extensions==1.0.1
# via mkdocs-material
mkdocstrings==0.13.6
mkdocstrings==0.15.2
# via -r requirements.in
nltk==3.5
# via lunr
Expand Down Expand Up @@ -137,8 +144,6 @@ six==1.15.0
# lunr
# pyopenssl
# python-dateutil
soupsieve==2.0.1
# via beautifulsoup4
sqlalchemy==1.3.20
# via opensafely-cohort-extractor
sqlparse==0.4.1
Expand Down
2 changes: 1 addition & 1 deletion templates/python/material/parameters.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
{% for parameter in parameters %}
<tr>
<td><code>{{ parameter.name }}</code></td>
<td>{{ parameter.description|convert_markdown }}</td>
<td>{{ parameter.description|convert_markdown(heading_level, html_id) }}</td>
<td>{% if parameter.default %}<code>{{ parameter.default }}</code>{% else %}<em>required</em>{% endif %}</td>
</tr>
{% endfor %}
Expand Down