1
0

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:
Erik Johnston
2021-11-03 11:10:25 +00:00
committed by GitHub
parent d688a6dee5
commit bcc115c28d
2 changed files with 4 additions and 0 deletions

1
changelog.d/11233.misc Normal file
View File

@@ -0,0 +1 @@
Add `twine` and `towncrier` as dev dependencies, as they're used by the release script.

View File

@@ -132,6 +132,9 @@ CONDITIONAL_REQUIREMENTS["dev"] = (
"GitPython==3.1.14",
"commonmark==0.9.1",
"pygithub==1.55",
# The following are executed as commands by the release script.
"twine",
"towncrier",
]
)