thisisparker / xword-dl

⬛⬜⬛ Command line tool to scrape crosswords from online solvers and save them as .puz files ⬛⬜⬛
MIT License
139 stars 30 forks source link

update lxml requirement from 4.9.2 to 5.1.0 #185

Open minicircle opened 3 months ago

minicircle commented 3 months ago

lxml 4.9.2, the version currently required by xword-dl, does not have precompiled wheels available for Python 3.12 (see https://pypi.org/project/lxml/4.9.2/#files), whereas lxml 4.9.3 and newer do. This commit updates the requirement for lxml to 5.1.0 (the latest available version) to allow for installing xword-dl locally under Python 3.12 without having to locally build a wheel for lxml.

(Thank you for your work on xword-dl, I use it often. 🙂)