microsoft / Simplify-Docx

Simplify DOCX files to JSON
MIT License
219 stars 46 forks source link

Loosen Requirements #10

Closed joetheone closed 3 years ago

joetheone commented 3 years ago

Hello,

Is it possible to loosen the requirements for this library. Right now we have:

install_requires=[
        "lxml==4.3.3",
        "more-itertools==7.0.0",
        "python-docx==0.8.10",
        "six==1.12.0",
        "wincertstore==0.2",
    ],

Could we do something like:

install_requires=[
        "lxml>=4.3.3,<5",
        "more-itertools==7.0.0",
        "python-docx==0.8.10",
        "six>=1.12.0<2",
        "wincertstore==0.2",
    ],
jdthorpe commented 3 years ago

Great suggestion. Updated just now.

joetheone commented 3 years ago

Great! Will you release a new minor version of the library then?