Skip to content

Commit

Permalink
Fix unicode error
Browse files Browse the repository at this point in the history
This fixes python-poetry#221 by exchanging the regex package for re (the former having fixed the long-standing bug in re (see [here](lark-parser/lark#590) for details). Not sure if this will work for poetry (i.e., whether adding regex as a dependency is acceptable)...but thought I would propose this change and wait for feedback to take it from there.
Thanks!
  • Loading branch information
julienmalard authored Feb 11, 2021
1 parent 4bc9bde commit bc233f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion poetry/core/packages/package.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
import copy
import re
import regex as re

from contextlib import contextmanager
from typing import TYPE_CHECKING
Expand Down

0 comments on commit bc233f5

Please sign in to comment.