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 = "*" mock = "*"
yarl = {editable = true, path = "."} yarl = {editable = true, path = "."}
pytest-integration = "*" pytest-integration = "*"
iniconfig = "*"
[packages] [packages]
phi = {editable = true,path = "."} phi = {editable = true,path = "."}
aiohttp = "2.3.8" aiohttp = "==3.8.1"
click = "7.0" click = "8.0"
pyYAML = "*" pyYAML = "*"
ldap3 = "*" ldap3 = "*"
bonsai = "==1.2.0" bonsai = "==1.3.0"
passlib = "==1.7.1" passlib = "==1.7.1"
bcrypt = "==3.1.7" bcrypt = "==3.2.0"
multidict = "*" multidict = "*"
iniconfig = "*" 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"]}, entry_points={"console_scripts": ["phid=phi.app:cli"]},
setup_requires=["pytest-runner"], setup_requires=["pytest-runner"],
install_requires=[ install_requires=[
"aiohttp==2.3.8", "aiohttp==3.8.1",
"click==7.0", "click==7.0",
"pyYAML", "pyYAML",
"ldap3", "ldap3",
"bonsai==1.2.0", "bonsai==1.3.0",
"passlib==1.7.1", "passlib==1.7.1",
"bcrypt==3.1.7", "bcrypt==3.2.0",
], ],
tests_require=["pytest", "pytest-aiohttp", "pytest-asyncio", "async-generator"], tests_require=["pytest", "pytest-aiohttp", "pytest-asyncio", "async-generator"],
python_requires=">=3.9",
) )