Skip to content

Commit

Permalink
Version release: v0.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
nulinspiratie committed Nov 28, 2024
1 parent 7da8604 commit d376cb3
Showing 1 changed file with 15 additions and 9 deletions.
24 changes: 15 additions & 9 deletions backend/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "qualibrate-app"
version = "0.2.2"
version = "0.2.3"
description = ""
authors = ["Quantum Machines <[email protected]>"]
repository = "https://github.com/qua-platform/qualibrate-app"
Expand All @@ -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 }

Expand Down Expand Up @@ -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]
Expand All @@ -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]
Expand Down

0 comments on commit d376cb3

Please sign in to comment.