Skip to content

Commit 4e28daf

Browse files
committed
fix: revert markdown2 version limitation; markdown2 bug resolved
Revert this checkin since 2.4.13 with the fix is current: changeset: 7509:46248c3ca7af user: John Rouillard <[email protected]> date: Sun Jun 25 17:03:38 2023 -0400 files: .github/workflows/ci-test.yml .travis.yml description: markdown2 v2.4.9 is broken. Pin to 2.4.8 or earlier. Revert when trentm/python-markdown2#517 is fixed.
1 parent 6d715e3 commit 4e28daf

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
@@ -203,7 +203,7 @@ jobs:
203203
run: |
204204
sudo apt-get install swig gpgsm libgpgme-dev
205205
# pygments for markdown2 to highlight code blocks
206-
pip install 'markdown2<=2.4.8' pygments
206+
pip install markdown2 pygments
207207
# docutils for ReStructuredText
208208
pip install beautifulsoup4 brotli docutils gpg jinja2 \
209209
mistune==0.8.4 pyjwt pytz whoosh

.travis.yml

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

0 commit comments

Comments
 (0)