File tree 2 files changed +6
-3
lines changed
2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 89
89
pattern = r'pypa/(?P<commit_repo>[\-\.\w]+)@(?P<commit_number>[\da-f]+)' ,
90
90
url = '{GH}/pypa/{commit_repo}/commit/{commit_number}' ,
91
91
),
92
+ dict (
93
+ pattern = r'Discourse thread (?P<thread_number>\d+)' ,
94
+ url = 'https://discuss.python.org/t/{thread_number}' ,
95
+ ),
92
96
],
93
97
),
94
98
}
113
117
'user' : (f'{ github_url } %s' , '@%s' ),
114
118
'pypi' : ('https://pypi.org/project/%s' , '%s' ),
115
119
'wiki' : ('https://wikipedia.org/wiki/%s' , '%s' ),
116
- 'discourse' : ('https://discuss.python.org/t/%s' , '%s' ),
117
120
}
118
121
extensions += ['sphinx.ext.extlinks' ]
119
122
Original file line number Diff line number Diff line change 1
1
Incorporated ``wheel.macosx_libfile `` as a private module in the ``setuptools `` project.
2
- The discussion leading to this approach can be found in #4935 and :discourse: ` 87509 ` .
2
+ The discussion leading to this approach can be found in #4935 and in the Discourse thread 87509.
3
3
Third party software interested in using this module are encouraged to interact
4
- in the discourse thread and propose alternatives (e.g. extracting this module
4
+ in the Discourse thread and propose alternatives (e.g. extracting this module
5
5
in its own separated project).
You can’t perform that action at this time.
0 commit comments