Skip to content

Commit 3ae83c3

Browse files
committed
Make dependency on Click 7.0, regex 2020.1.8, and toml 0.10.1 explicit
1 parent ceeb1d9 commit 3ae83c3

File tree

3 files changed

+31
-31
lines changed

3 files changed

+31
-31
lines changed

Pipfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ black = {editable = true, extras = ["d"], path = "."}
2424
aiohttp = ">=3.3.2"
2525
aiohttp-cors = "*"
2626
appdirs = "*"
27-
click = ">=6.5"
27+
click = ">=7.0"
2828
mypy_extensions = ">=0.4.3"
2929
pathspec = ">=0.6"
30-
regex = ">=2019.8"
30+
regex = ">=2020.1.8"
3131
toml = ">=0.10.1"
3232
typed-ast = "==1.4.0"
3333
typing_extensions = ">=3.7.4"

Pipfile.lock

+27-26
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

setup.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,9 @@ def get_long_description() -> str:
6868
python_requires=">=3.6",
6969
zip_safe=False,
7070
install_requires=[
71-
"click>=6.5",
72-
"attrs>=18.1.0",
71+
"click>=7.1.2",
7372
"appdirs",
74-
"toml>=0.9.4",
73+
"toml>=0.10.1",
7574
"typed-ast>=1.4.0",
7675
"regex>=2020.1.8",
7776
"pathspec>=0.6, <1",

0 commit comments

Comments
 (0)