Skip to content

Commit

Permalink
BF: fix missing bullet points on RTD docs
Browse files Browse the repository at this point in the history
Currently running into this bug: readthedocs/sphinx_rtd_theme#1115

This comment explains why pinning is necessary: readthedocs/sphinx_rtd_theme#1115 (comment)

fix #273
  • Loading branch information
aqw committed Jan 24, 2023
1 parent 193a39e commit 06a79a5
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ version: 2
build:
os: ubuntu-22.04
tools:
python: "3.10"
python: "3.11"
jobs:
post_install:
- pip install ".[docs]"
Expand Down
14 changes: 12 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,18 @@
'ruamel.yaml'
],
extras_require={
'tests': ['flake8', 'pyre-check', 'pytest', 'pytest-cov'],
'docs': ['sphinx', 'sphinx-argparse', 'sphinx-rtd-theme']},
'tests': [
'flake8',
'pyre-check',
'pytest',
'pytest-cov'
],
'docs': [
'sphinx>=4.3.0',
'sphinx-argparse',
'sphinx-rtd-theme>=0.5.1'
]
},
python_requires=">=3.9",
entry_points={
'console_scripts': [
Expand Down

0 comments on commit 06a79a5

Please sign in to comment.