Skip to content

Commit e690e78

Browse files
author
Jason Thorpe
committed
allow minor,patch increments to lxml and six libraries
1 parent f915093 commit e690e78

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ def read(*names, **kwargs):
4040
py_modules=[splitext(basename(path))[0] for path in glob("src/*.py")],
4141
include_package_data=True,
4242
zip_safe=False,
43+
long_description_content_type='text/markdown',
4344
classifiers=[
4445
# complete classifier list: http://pypi.python.org/pypi?%3Aaction=list_classifiers
4546
"Development Status :: 5 - Production/Stable",
@@ -60,10 +61,10 @@ def read(*names, **kwargs):
6061
],
6162
keywords=["sql", "csv"],
6263
install_requires=[
63-
"lxml==4.3.3",
64+
"lxml>=4.3.3,<5",
6465
"more-itertools==7.0.0",
6566
"python-docx==0.8.10",
66-
"six==1.12.0",
67+
"six>=1.12.0<2",
6768
"wincertstore==0.2",
6869
],
6970
extras_require={':python_version=="2.6"': ["argparse"]},

0 commit comments

Comments
 (0)