Browse Source

Reflect requirements in pyproject.py

Arkadiusz Ryś 2 years ago
parent
commit
9cf582b462
3 changed files with 12 additions and 13 deletions
  1. 0 1
      ontopoint/main.py
  2. 5 5
      pyproject.toml
  3. 7 7
      requirements.txt

+ 0 - 1
ontopoint/main.py

@@ -15,7 +15,6 @@ def write_notification(name: str):
     with open("access.log", mode="w") as log_file:
         log_file.write(f"Accessed: {name}")
 
-
 @app.get("/")
 async def root():
     ontologies = [file_path.name for file_path in data_path.glob("*")]

+ 5 - 5
pyproject.toml

@@ -24,20 +24,20 @@ dependencies = [
 
 [project.optional-dependencies]
 test = [
-    "pytest~=7.2.0",
+    "pytest~=7.2.1",
 ]
 doc = [
     "sphinx~=6.1.3",
 ]
 dev = [
-    "tox~=4.2.8",
-    "pip~=22.3.1",
+    "tox~=4.4.6",
+    "pip~=23.0.1",
     "flit~=3.8.0",
     "twine~=4.0.2",
-    "invoke~=1.7.3",
+    "invoke~=2.0.0",
     "jinja2~=3.1.2",
     "flake8~=6.0.0",
-    "coverage~=7.0.5",
+    "coverage~=7.2.1",
 ]
 
 [project.urls]

+ 7 - 7
requirements.txt

@@ -1,18 +1,18 @@
 # OctoPoint
-fastapi           ~= 0.89.1
-starlette         ~= 0.22.0 # fastapi 0.89.1 depends on starlette==0.22.0
+fastapi           ~= 0.92
+starlette         ~= 0.25.0
 python-magic      ~= 0.4.27
 uvicorn[standard] ~= 0.20.0
 # Test
-pytest ~= 7.2.0
+pytest ~= 7.2.1
 # Doc
 sphinx ~= 6.1.3
 # Dev
-tox      ~= 4.2.8
-pip      ~= 22.3.1
+tox      ~= 4.4.6
+pip      ~= 23.0.1
 flit     ~= 3.8.0
 twine    ~= 4.0.2
-invoke   ~= 1.7.3
+invoke   ~= 2.0.0
 jinja2   ~= 3.1.2
 flake8   ~= 6.0.0
-coverage ~= 7.0.5
+coverage ~= 7.2.1