Skip to content

Commit

Permalink
Fix problems with the optional regex requirement
Browse files Browse the repository at this point in the history
An older version of the regex package with binary "wheel" files for
Python 2.7 is now preferred.  This prevents pip from trying to comp-
ile the package unnecessarily.
  • Loading branch information
drmfinlay committed Jul 19, 2022
1 parent 0acb593 commit 12fbe9f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,8 @@ def read(*names):
extras_require={
"accessibility": [
"enum34;python_version<'3.4'",
"regex",
"regex<2022.1.18;python_version<='3.10",
"regex;python_version>'3.10",
],
"sphinx": [
"sphinxwrapper >= 1.2.0",
Expand Down

0 comments on commit 12fbe9f

Please sign in to comment.