Skip to content

Commit 0910063

Browse files
michael.yakmichaelyaakoby
authored andcommitted
Upgrade dependencies in example projects
1 parent 36d4171 commit 0910063

File tree

8 files changed

+12
-439
lines changed

8 files changed

+12
-439
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The following video shows a FastAPI web app being monitored and controled using
1616
The complete example can be found in [Advanced example](examples/Advanced/README.md).
1717

1818
## Requirements
19-
Python 3.7+
19+
Python 3.9+
2020

2121
Pyctuator has zero hard dependencies.
2222

@@ -352,7 +352,7 @@ The examples include
352352
* [Advanced Example](examples/Advanced/README.md) - demonstrates configuring and using all the advanced features of Pyctuator.
353353

354354
## Contributing
355-
To set up a development environment, make sure you have Python 3.7 or newer installed, and run `make bootstrap`.
355+
To set up a development environment, make sure you have Python 3.9 or newer installed, and run `make bootstrap`.
356356

357357
Use `make check` to run static analysis tools.
358358

examples/Advanced/poetry.lock

Lines changed: 0 additions & 427 deletions
This file was deleted.

examples/Advanced/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ authors = [
77
]
88

99
[tool.poetry.dependencies]
10-
python = "^3.7"
10+
python = "^3.9"
1111
psutil = { version = "^5.6" }
1212
fastapi = { version = "^0.65.2" }
1313
uvicorn = { version = "^0.11.7" }

examples/FastAPI/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ authors = [
77
]
88

99
[tool.poetry.dependencies]
10-
python = "^3.7"
10+
python = "^3.9"
1111
psutil = { version = "^5.6" }
12-
fastapi = { version = "^0.68.0" }
13-
uvicorn = { version = "^0.9.0" }
12+
fastapi = { version = "^0.82.0" }
13+
uvicorn = { version = "^0.18.2" }
1414
pyctuator = { version = "^1.0.0" }
1515

1616
[build-system]

examples/Flask/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ authors = [
77
]
88

99
[tool.poetry.dependencies]
10-
python = "^3.7"
10+
python = "^3.9"
1111
psutil = { version = "^5.6" }
12-
flask = { version = "^1.1" }
12+
flask = { version = "^2.2.2" }
1313
pyctuator = { version = "^1.0.0" }
1414

1515
[build-system]

examples/aiohttp/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ authors = [
77
]
88

99
[tool.poetry.dependencies]
10-
python = "^3.7"
10+
python = "^3.9"
1111
psutil = { version = "^5.6" }
12-
aiohttp = { version = "^3.5.4" }
12+
aiohttp = { version = "^3.6.2" }
1313
pyctuator = { version = "^1.0.0" }
1414

1515
[build-system]

examples/tornado/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ authors = [
77
]
88

99
[tool.poetry.dependencies]
10-
python = "^3.7"
10+
python = "^3.9"
1111
psutil = { version = "^5.6" }
1212
tornado = { version = "^6.0.4" }
1313
pyctuator = { version = "^1.0.0" }

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ classifiers = [
2424
"Framework :: FastAPI",
2525
"Framework :: aiohttp",
2626
"Intended Audience :: Developers",
27-
"Programming Language :: Python :: 3.7",
27+
"Programming Language :: Python :: 3.9",
2828
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
2929
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
3030
"Topic :: Software Development :: Libraries :: Python Modules",

0 commit comments

Comments
 (0)