File: 0002-Remove-pygments-markdown-lexer-dependency.patch

package info (click to toggle)
errbot 6.2.0%2Bds-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,796 kB
  • sloc: python: 11,557; makefile: 164; sh: 97
file content (30 lines) | stat: -rw-r--r-- 799 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
From: Birger Schacht <birger@debian.org>
Date: Wed, 11 Nov 2020 18:55:03 +0100
Subject: Remove pygments-markdown-lexer dependency

This package is only used in a demo mode and ther eis no Debian package
yet (the software is in BETA
https://github.com/jhermann/pygments-markdown-lexer)
---
 setup.py | 1 -
 1 file changed, 1 deletion(-)

--- a/setup.py
+++ b/setup.py
@@ -29,7 +29,7 @@
 deps = [
     "webtest==3.0.0",
     "setuptools==68.1.2",
-    "flask==2.3.3",
+    "flask",
     "requests==2.31.0",
     "jinja2==3.1.2",
     "pyOpenSSL==23.2.0",
@@ -37,7 +37,6 @@
     "markdown==3.4.4",
     "ansi==0.3.6",
     "Pygments==2.16.1",
-    "pygments-markdown-lexer==0.1.0.dev39",  # sytax coloring to debug md
     "dulwich==0.21.5",  # python implementation of git
     "deepmerge==1.1.0",
 ]