Skip to content

Commit ecf8c74

Browse files
authored
Bump regex dependency to 2021.4.4 to fix import of Pattern class (#2621)
Fixes #2620
1 parent d0b04d9 commit ecf8c74

File tree

4 files changed

+29
-7
lines changed

4 files changed

+29
-7
lines changed

CHANGES.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Change Log
22

3+
## Unreleased
4+
5+
### _Black_
6+
7+
- Bumped regex version minimum to 2021.4.4 to fix Pattern class usage (#2621)
8+
39
## 21.11b0
410

511
### _Black_

Pipfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ platformdirs= ">=2"
4242
click = ">=8.0.0"
4343
mypy_extensions = ">=0.4.3"
4444
pathspec = ">=0.8.1"
45-
regex = ">=2020.1.8"
45+
regex = ">=2021.4.4"
4646
tomli = ">=0.2.6, <2.0.0"
4747
typed-ast = "==1.4.3"
4848
typing_extensions = {markers = "python_version < '3.10'", version = ">=3.10.0.0"}

Pipfile.lock

Lines changed: 21 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ def find_python_files(base: Path) -> List[Path]:
101101
"platformdirs>=2",
102102
"tomli>=0.2.6,<2.0.0",
103103
"typed-ast>=1.4.2; python_version < '3.8' and implementation_name == 'cpython'",
104-
"regex>=2020.1.8",
104+
"regex>=2021.4.4",
105105
"pathspec>=0.9.0, <1",
106106
"dataclasses>=0.6; python_version < '3.7'",
107107
"typing_extensions>=3.10.0.0",

0 commit comments

Comments
 (0)