Skip to content

Commit

Permalink
chore(deps): update dependency arg-services to v1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Nov 8, 2023
1 parent d9cb59e commit 7e44272
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 18 deletions.
2 changes: 1 addition & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

35 changes: 18 additions & 17 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
[tool.poetry]
name = "arguebuf"
version = "2.4.0"
description = "Create and analyze argument graphs and serialize them via Protobuf"
version = "2.0.0"
description = "A library for loading argument graphs in various formats (e.g., AIF)."
authors = ["Mirko Lenz <info@mirko-lenz.de>"]
license = "MIT"
readme = "README.md"
homepage = "https://recap.uni-trier.de"
repository = "https://github.com/recap-utr/arguebuf-python"
documentation = "https://arguebuf.readthedocs.io/en/latest"
packages = [{ include = "arguebuf" }]
Expand All @@ -14,25 +15,25 @@ arguebuf = "arguebuf.cli.app:cli"

[tool.poetry.dependencies]
python = "^3.9"
arg-services = "^1.4"
networkx = ">=2.8, <4.0"
pendulum = "^2.1"
graphviz = "^0.20"
lxml = "^4.9"
typer = { version = "^0.9", extras = ["all"], optional = true }
deepl = { version = "^1.15", optional = true }
arg-services = "^1.3.2"
networkx = ">=2.8.8, <4.0"
pendulum = "^2.1.2"
graphviz = "^0.20.1"
lxml = "^4.9.2"
typer = { version = "^0.9.0", extras = ["all"], optional = true }
deepl = { version = "^1.15.0", optional = true }
pygraphviz = { version = "^1.11", optional = true }
multimethod = { version = "^1.10", optional = true }
multimethod = { version = "^1.9.1", optional = true }

[tool.poetry.group.dev.dependencies]
pytest = "^7.4"
pytest-cov = "^4.1"
pytest-xdist = "^3.3"
deepdiff = { version = "^6.6", extras = ["murmur"] }
lxml-stubs = "^0.4"
pytest = "^7.3.2"
pytest-cov = "^4.1.0"
pytest-xdist = "^3.3.1"
deepdiff = { extras = ["murmur"], version = "^6.3.0" }
lxml-stubs = "^0.4.0"

[tool.poetry.group.docs.dependencies]
pdoc = "^14.1"
pdoc = "^14.0.0"

[tool.poetry.extras]
cli = ["typer", "deepl", "multimethod"]
Expand All @@ -43,7 +44,7 @@ addopts = "--numprocesses 4 --dist load --cov arguebuf --cov-report term-missing
doctest_optionflags = "NORMALIZE_WHITESPACE IGNORE_EXCEPTION_DETAIL ELLIPSIS"

[tool.ruff]
# https://docs.astral.sh/ruff/rules/
# https://beta.ruff.rs/docs/rules
target-version = "py39"
select = ["B", "E", "F", "W"]
ignore = ["E501"]
Expand Down

0 comments on commit 7e44272

Please sign in to comment.