Skip to content

Commit dfd829a

Browse files
authored
Merge pull request #6 from click-contrib/fix-sphinx-m2r
Fix build docs with sphinx and m2r
2 parents 66c7c82 + 570a7ad commit dfd829a

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
# Changelog
22

3-
## v0.3.1
3+
## v0.3.2
4+
* DOC: update m2r from a [fork](https://github.com/crossnox/m2r) to support sphinx >= 3
45

6+
## v0.3.1
57
* Add `hidden=True` to `_GroupTitleFakeOption` as a temporary workaroud for issue [#4](https://github.com/click-contrib/click-option-group/issues/4)
68

79
## v0.3.0

click_option_group/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# -*- coding: utf-8 -*-
22

3-
__version__ = '0.3.1'
3+
__version__ = '0.3.2'

setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,11 @@ def get_long_description():
3333
'Click>=7.0,<8',
3434
],
3535
extras_require={
36-
'docs': ['sphinx>=2.3', 'Pallets-Sphinx-Themes', 'm2r'],
36+
'docs': [
37+
'sphinx>=2.3',
38+
'Pallets-Sphinx-Themes',
39+
'm2r @ git+https://github.com/crossnox/m2r@dev#egg=m2r',
40+
],
3741
'tests': ['pytest'],
3842
},
3943
url='https://github.com/click-contrib/click-option-group',

0 commit comments

Comments
 (0)