Skip to content

Commit 628c948

Browse files
michael.yakmichaelyaakoby
authored andcommitted
Update dependnecies to latest as recomended by poetry
Updated: * fastapi: ^0.88.0 -> ^0.92.0 * wekzeug: -> 2.2.3 * sqlalchemy: ^1.3 -> ^2.0.4 * cryptography: ^38.0.4 -> >=38.0.4,<40.0.0 * mypy: ^0.991 -> ^1.0.1 * poetry: 0.12 -> 1.1
1 parent 2b039ec commit 628c948

File tree

8 files changed

+103
-96
lines changed

8 files changed

+103
-96
lines changed

.pylintrc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -468,5 +468,5 @@ min-public-methods=2
468468

469469
# Exceptions that will emit a warning when being caught. Defaults to
470470
# "BaseException, Exception".
471-
overgeneral-exceptions=BaseException,
472-
Exception
471+
overgeneral-exceptions=builtins.BaseException,
472+
builtins.Exception

examples/Advanced/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ python = "^3.9"
1111
psutil = { version = "^5.6" }
1212
fastapi = { version = "^0.65.2" }
1313
uvicorn = { version = "^0.11.7" }
14-
pyctuator = { version = "^1.0.1" }
14+
pyctuator = { version = "^1.0.2" }
1515
sqlalchemy = { version = "^1.3" }
1616
PyMySQL = { version = "^0.9.3" }
1717
cryptography = { version = "^2.8" }

examples/FastAPI/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ python = "^3.9"
1111
psutil = { version = "^5.6" }
1212
fastapi = { version = "^0.82.0" }
1313
uvicorn = { version = "^0.18.2" }
14-
pyctuator = { version = "^1.0.1" }
14+
pyctuator = { version = "^1.0.2" }
1515

1616
[build-system]
1717
requires = ["poetry>=0.12"]

examples/Flask/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ authors = [
1010
python = "^3.9"
1111
psutil = { version = "^5.6" }
1212
flask = { version = "^2.2.2" }
13-
pyctuator = { version = "^1.0.1" }
13+
pyctuator = { version = "^1.0.2" }
1414

1515
[build-system]
1616
requires = ["poetry>=0.12"]

examples/aiohttp/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ authors = [
1010
python = "^3.9"
1111
psutil = { version = "^5.6" }
1212
aiohttp = { version = "^3.6.2" }
13-
pyctuator = { version = "^1.0.1" }
13+
pyctuator = { version = "^1.0.2" }
1414

1515
[build-system]
1616
requires = ["poetry>=0.12"]

examples/tornado/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ authors = [
1010
python = "^3.9"
1111
psutil = { version = "^5.6" }
1212
tornado = { version = "^6.0.4" }
13-
pyctuator = { version = "^1.0.1" }
13+
pyctuator = { version = "^1.0.2" }
1414

1515
[build-system]
1616
requires = ["poetry>=0.12"]

0 commit comments

Comments
 (0)