From d376cb3c4ed3a00fefe17206967f823d97f2d8a5 Mon Sep 17 00:00:00 2001 From: Serwan Asaad Date: Thu, 28 Nov 2024 09:00:17 +0100 Subject: [PATCH] Version release: v0.2.3 --- backend/pyproject.toml | 24 +++++++++++++++--------- 1 file changed, 15 insertions(+), 9 deletions(-) diff --git a/backend/pyproject.toml b/backend/pyproject.toml index 7f586f1..e0408fc 100644 --- a/backend/pyproject.toml +++ b/backend/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "qualibrate-app" -version = "0.2.2" +version = "0.2.3" description = "" authors = ["Quantum Machines "] repository = "https://github.com/qua-platform/qualibrate-app" @@ -19,7 +19,7 @@ tomli = { version = "^2.0.1", python = "<3.11" } tomli-w = "^1.0.0" requests = "^2.31.0" jsonpatch = "^1.33" -qualibrate-runner = {version="^0.2.2", optional = true } +qualibrate-runner = { version = "^0.2.2", optional = true } # TODO: replace after publishing timeline-db # json-timeline-database = { path = "../../json-timeline-database", optional = true, develop = true } @@ -52,7 +52,13 @@ exclude = ['tests/'] [[tool.mypy.overrides]] # TODO: add py.typed to json_timeline_database and remove from ignore imports -module = ["jsonpatch", "jsonpointer", "json_timeline_database.*", "qualibrate", "qualibrate_runner.*"] +module = [ + "jsonpatch", + "jsonpointer", + "json_timeline_database.*", + "qualibrate", + "qualibrate_runner.*", +] ignore_missing_imports = true [tool.ruff] @@ -61,12 +67,12 @@ target-version = "py39" [tool.ruff.lint] extend-select = [ - "E", # pycodestyle - "F", # Pyflakes - "UP", # pyupgrade - "B", # flake8-bugbear - "SIM", # flake8-simplify - "I", # isort + "E", # pycodestyle + "F", # Pyflakes + "UP", # pyupgrade + "B", # flake8-bugbear + "SIM", # flake8-simplify + "I", # isort ] [tool.ruff.lint.pycodestyle]