Skip to content
This repository was archived by the owner on Jun 26, 2025. It is now read-only.

Commit b8873ea

Browse files
committed
update dependencies
1 parent ce34b1d commit b8873ea

File tree

3 files changed

+25
-2
lines changed

3 files changed

+25
-2
lines changed

Pipfile

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,27 @@ verify_ssl = true
77
pytest = "*"
88
pytest-cov = "*"
99
tox = "*"
10+
black = "*"
11+
flask-assistant = {editable = true,path = "."}
1012

1113
[packages]
12-
flask-assistant = {editable = true,path = "."}
14+
aniso8601 = "==4.0.1"
15+
certifi = "==2018.11.29"
16+
chardet = "==3.0.4"
17+
click = "==7.0"
18+
idna = "==2.8"
19+
itsdangerous = "==1.1.0"
20+
requests = "==2.21.0"
21+
urllib3 = "==1.24.1"
22+
Flask = "==1.0.2"
23+
Jinja2 = "==2.10"
24+
MarkupSafe = "==1.1.0"
25+
"ruamel.yaml" = "==0.15.81"
26+
Werkzeug = "==0.14.1"
1327
google-auth = "*"
1428

29+
[requires]
30+
python_version = "3.7"
31+
1532
[pipenv]
1633
allow_prereleases = true

requirements.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,19 @@
11
aniso8601==4.0.1
2+
cachetools==3.1.1
23
certifi==2018.11.29
34
chardet==3.0.4
45
click==7.0
56
flask==1.0.2
7+
google-auth==1.6.3
68
idna==2.8
79
itsdangerous==1.1.0
810
jinja2==2.10
911
markupsafe==1.1.0
12+
pyasn1-modules==0.2.7
13+
pyasn1==0.4.7
1014
requests==2.21.0
15+
rsa==4.0
1116
ruamel.yaml==0.15.81
17+
six==1.12.0
1218
urllib3==1.24.1
1319
werkzeug==0.14.1

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
zip_safe=False,
2424
include_package_data=True,
2525
platforms="any",
26-
install_requires=["Flask", "requests", "ruamel.yaml", "aniso8601"],
26+
install_requires=["Flask", "requests", "ruamel.yaml", "aniso8601", "google-auth"],
2727
setup_requires=["pytest-runner"],
2828
tests_require=["pytest"],
2929
test_suite="tests",

0 commit comments

Comments
 (0)