lilydjwg / nvchecker

New version checker for software releases
MIT License
438 stars 70 forks source link

Remove usage of deprecared sre_constants #223

Closed alexfikl closed 1 year ago

alexfikl commented 1 year ago

Python 3.11 deprecated sre_constants and mostly imports from re now: https://github.com/python/cpython/blob/3.11/Lib/sre_constants.py

This ports to re.error instead, which should be equivalent.

lilydjwg commented 1 year ago

Thanks!