Skip to content

Commit

Permalink
requirements: require markdown >= 3.3.4
Browse files Browse the repository at this point in the history
We need a version of Python markdown that fixes the following
bug: Python-Markdown/markdown#1107
This version isn't available through apt, but can be installed
through pip.

Signed-off-by: Ruth Fuchss <ruth.fuchss@canonical.com>
  • Loading branch information
ru-fu authored and toby63 committed Sep 11, 2021
1 parent 8eeba6a commit a96225d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/test.yml
Expand Up @@ -24,7 +24,10 @@ jobs:
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y man2html-base pycodestyle python3-bs4 python3-markdown
sudo apt-get install -y man2html-base pycodestyle python3-bs4
- name: Install Python dependencies
run: sudo pip3 install -r requirements.txt

- name: Static analysis
run: pycodestyle generate
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -29,7 +29,7 @@ Install the following software (naming may depends on your distribution):
* python3 (>= 3.3)
* python3-bs4
* python3-jinja2
* python3-markdown
* python3-markdown (>= 3.3.4)
* python3-pygments

### Clone the repo
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
@@ -1,5 +1,5 @@
beautifulsoup4
jinja2
markdown
markdown>=3.3.4
pygments
pyyaml

0 comments on commit a96225d

Please sign in to comment.