Dependency update

develop
blallo 2022-01-25 23:51:10 +01:00
parent 077c53c5be
commit 2932957afb
Signed by: blallo
GPG Key ID: 0CBE577C9B72DC3F
3 changed files with 1162 additions and 556 deletions

View File

@ -14,15 +14,16 @@ pytest-aiohttp = "*"
mock = "*"
yarl = {editable = true, path = "."}
pytest-integration = "*"
iniconfig = "*"
[packages]
phi = {editable = true,path = "."}
aiohttp = "2.3.8"
click = "7.0"
aiohttp = "==3.8.1"
click = "8.0"
pyYAML = "*"
ldap3 = "*"
bonsai = "==1.2.0"
bonsai = "==1.3.0"
passlib = "==1.7.1"
bcrypt = "==3.1.7"
bcrypt = "==3.2.0"
multidict = "*"
iniconfig = "*"

1702
Pipfile.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -13,13 +13,14 @@ setup(
entry_points={"console_scripts": ["phid=phi.app:cli"]},
setup_requires=["pytest-runner"],
install_requires=[
"aiohttp==2.3.8",
"aiohttp==3.8.1",
"click==7.0",
"pyYAML",
"ldap3",
"bonsai==1.2.0",
"bonsai==1.3.0",
"passlib==1.7.1",
"bcrypt==3.1.7",
"bcrypt==3.2.0",
],
tests_require=["pytest", "pytest-aiohttp", "pytest-asyncio", "async-generator"],
python_requires=">=3.9",
)