This commit is contained in:
Kohki Miki 2022-07-21 12:49:22 +00:00 committed by GitHub
commit f037497b46
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 3 deletions

View File

@ -1,7 +1,6 @@
os: linux
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"

View File

@ -17,8 +17,9 @@ import re
import markdown
import six
from sqlalchemy.orm.session import object_session
from markdown.util import etree, AtomicString
from markdown.util import AtomicString
import xml.etree.ElementTree as etree
@six.python_2_unicode_compatible
class MarkdownString(object):

View File

@ -11,7 +11,7 @@ setup(
install_requires=[
'SQLAlchemy>=1.0,<1.4',
'whoosh>=2.5,<2.7',
'markdown>=2.4.1,<=2.6.11',
'markdown>=3.4,<3.5',
'construct==2.5.3',
'six>=1.9.0',
],
@ -22,6 +22,7 @@ setup(
},
classifiers=[
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",