Skip to content

Commit 333e02c

Browse files
committed
markdown2 v2.4.9 is broken. Pin to 2.4.8 or earlier.
Revert when trentm/python-markdown2#517 is fixed.
1 parent 5ac6623 commit 333e02c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ jobs:
166166
run: |
167167
sudo apt-get install swig gpgsm libgpgme-dev
168168
# pygments for markdown2 to highlight code blocks
169-
pip install markdown2 pygments
169+
pip install 'markdown2<=2.4.8' pygments
170170
# docutils for ReStructuredText
171171
pip install beautifulsoup4 brotli docutils gpg jinja2 \
172172
mistune==0.8.4 pyjwt pytz whoosh

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ install:
135135
- if [[ $TRAVIS_PYTHON_VERSION != "3.4"* ]]; then pip install docutils; fi
136136
- if [[ $TRAVIS_PYTHON_VERSION != "3.4"* ]]; then pip install mistune==0.8.4; fi
137137
- if [[ $TRAVIS_PYTHON_VERSION != "3.4"* && $TRAVIS_PYTHON_VERSION != "2."* ]]; then pip install Markdown; fi
138-
- pip install markdown2
138+
- pip install 'markdown2<=2.4.8'
139139
- pip install brotli
140140
# zstd fails to build under python nightly aborting test.
141141
# allow testing to still happen if the optional package doesn't install.

0 commit comments

Comments
 (0)