diff options
author | 2022-08-04 14:59:02 +0100 | |
---|---|---|
committer | 2022-08-14 19:43:55 +0100 | |
commit | dc68bb28b36d61c9991ab0fbd55d3b77e694c1b3 (patch) | |
tree | bc09829a0af5c164546e34565e146f5793ac416e | |
parent | Use RedisTestCase helper class for both Incidents and Silence test cases. (diff) |
revert bump to markdownify version
The new versions introduce conversions which causes the doc command
embed to be formatted improperly
-rw-r--r-- | poetry.lock | 18 | ||||
-rw-r--r-- | pyproject.toml | 6 |
2 files changed, 14 insertions, 10 deletions
diff --git a/poetry.lock b/poetry.lock index 9962195d9..1191549fc 100644 --- a/poetry.lock +++ b/poetry.lock @@ -427,7 +427,7 @@ pycodestyle = ">=2.0.0,<3.0.0" [[package]] name = "frozenlist" -version = "1.3.0" +version = "1.3.1" description = "A list-like structure which implements collections.abc.MutableSequence" category = "main" optional = false @@ -446,7 +446,7 @@ pyreadline3 = {version = "*", markers = "sys_platform == \"win32\" and python_ve [[package]] name = "identify" -version = "2.5.2" +version = "2.5.3" description = "File identification library for Python" category = "dev" optional = false @@ -517,15 +517,15 @@ source = ["Cython (>=0.29.7)"] [[package]] name = "markdownify" -version = "0.11.2" +version = "0.6.1" description = "Convert HTML to markdown." category = "main" optional = false python-versions = "*" [package.dependencies] -beautifulsoup4 = ">=4.9,<5" -six = ">=1.15,<2" +beautifulsoup4 = "*" +six = "*" [[package]] name = "mccabe" @@ -1071,7 +1071,7 @@ socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"] [[package]] name = "virtualenv" -version = "20.16.1" +version = "20.16.2" description = "Virtual Python Environment builder" category = "dev" optional = false @@ -1096,11 +1096,11 @@ python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7" [[package]] name = "yarl" -version = "1.7.2" +version = "1.8.1" description = "Yet another URL library" category = "main" optional = false -python-versions = ">=3.6" +python-versions = ">=3.7" [package.dependencies] idna = ">=2.0" @@ -1109,7 +1109,7 @@ multidict = ">=4.0" [metadata] lock-version = "1.1" python-versions = "3.10.*" -content-hash = "a2b47c854b1fb55bde8618ce85d09ce6c92b48c1ae61d281ce49fc0260585090" +content-hash = "b0dc5e1339805bf94be5f1b6a8454f8722d4eae645b8188ff62cd7b3c925f7e6" [metadata.files] aiodns = [] diff --git a/pyproject.toml b/pyproject.toml index 279543018..43eb799b6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,7 +23,11 @@ emoji = "2.0.0" feedparser = "6.0.10" rapidfuzz = "2.3.0" lxml = "4.9.1" -markdownify = "0.11.2" + +# Must be kept on this version unless doc command output is fixed +# See https://github.com/python-discord/bot/pull/2156 +markdownify = "0.6.1" + more_itertools = "8.13.0" python-dateutil = "2.8.2" python-frontmatter = "1.0.0" |