forked from MirrorHub/synapse
Add twine and towncrier as dev dependencies (#11233)
We don't pin them as we execute them as commands, rather than use them as libs.
This commit is contained in:
parent
d688a6dee5
commit
bcc115c28d
2 changed files with 4 additions and 0 deletions
1
changelog.d/11233.misc
Normal file
1
changelog.d/11233.misc
Normal file
|
@ -0,0 +1 @@
|
||||||
|
Add `twine` and `towncrier` as dev dependencies, as they're used by the release script.
|
3
setup.py
3
setup.py
|
@ -132,6 +132,9 @@ CONDITIONAL_REQUIREMENTS["dev"] = (
|
||||||
"GitPython==3.1.14",
|
"GitPython==3.1.14",
|
||||||
"commonmark==0.9.1",
|
"commonmark==0.9.1",
|
||||||
"pygithub==1.55",
|
"pygithub==1.55",
|
||||||
|
# The following are executed as commands by the release script.
|
||||||
|
"twine",
|
||||||
|
"towncrier",
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue