Skip to content

Commit b7aeaf7

Browse files
chore: Fix release validation (#191)
1 parent 84661ad commit b7aeaf7

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

codebuild/release/validate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ phases:
2828
- |
2929
while [ $NUM_RETRIES -gt 0 ]
3030
do
31-
tox -re py38-examples
31+
tox -re py3-examples
3232
if [ $? -eq 0 ]; then
3333
break
3434
fi

doc/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def get_version():
6262
pygments_style = "sphinx"
6363

6464
autoclass_content = "both"
65-
autodoc_default_flags = ["show-inheritance", "members"]
65+
autodoc_default_options = {"members": True, "show-inheritance": True}
6666
autodoc_member_order = "bysource"
6767

6868
html_theme = "sphinx_rtd_theme"

examples/tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[tox]
44
envlist =
5-
py{36,37,38,39}-examples
5+
py{3,36,37,38,39}-examples
66

77
[testenv:base-command]
88
commands = python -m pytest --basetemp={envtmpdir} -l {posargs}

0 commit comments

Comments
 (0)