Skip to content

Commit

Permalink
replace builtin re library with external regex library
Browse files Browse the repository at this point in the history
  • Loading branch information
Oderjunkie authored and lonnen committed Mar 29, 2022
1 parent edc9186 commit c0ffc3e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion parsimonious/expressions.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# anything--for speed. And kill all the dots.

from inspect import getfullargspec, isfunction, ismethod, ismethoddescriptor
import re
import regex as re

from parsimonious.exceptions import ParseError, IncompleteParseError
from parsimonious.nodes import Node, RegexNode
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
test_suite='tests',
url='https://github.com/erikrose/parsimonious',
include_package_data=True,
install_requires=['regex>=2022.3.15'],
classifiers=[
'Intended Audience :: Developers',
'Natural Language :: English',
Expand Down

0 comments on commit c0ffc3e

Please sign in to comment.