update deps

This commit is contained in:
Florian Förster 2025-01-29 11:16:52 +01:00
parent 92cfc5b649
commit 254f933d90
2 changed files with 9 additions and 18 deletions

2
pdm.lock generated
View File

@ -5,7 +5,7 @@
groups = ["default", "cytoscape", "dash", "dev", "notebooks", "plot", "spacy-lg", "spacy-md", "spacy-sm", "spacy-trf", "tests", "trials"] groups = ["default", "cytoscape", "dash", "dev", "notebooks", "plot", "spacy-lg", "spacy-md", "spacy-sm", "spacy-trf", "tests", "trials"]
strategy = ["inherit_metadata"] strategy = ["inherit_metadata"]
lock_version = "4.5.0" lock_version = "4.5.0"
content_hash = "sha256:be83d4fe6ba6ff261497e89e524f6eef1d7f27326c515c6de00667fbcc8c95bd" content_hash = "sha256:9fd5872e5138c0836914d8218af319ac58421e82d55e12d85d3c6b095e09d376"
[[metadata.targets]] [[metadata.targets]]
requires_python = ">=3.11" requires_python = ">=3.11"

View File

@ -1,6 +1,6 @@
[project] [project]
name = "lang-main" name = "lang-main"
version = "0.1.0" version = "0.1.1"
description = "Several tools to analyse TOM's data with strong focus on language processing" description = "Several tools to analyse TOM's data with strong focus on language processing"
authors = [ authors = [
{name = "d-opt GmbH, resp. Florian Förster", email = "f.foerster@d-opt.com"}, {name = "d-opt GmbH, resp. Florian Förster", email = "f.foerster@d-opt.com"},
@ -11,7 +11,6 @@ dependencies = [
"spacy>=3.7.4", "spacy>=3.7.4",
"sentence-transformers[onnx]>=3.2.0", "sentence-transformers[onnx]>=3.2.0",
"numpy>=1.26.4", "numpy>=1.26.4",
"pip>=24.0",
"typing-extensions>=4.12.2", "typing-extensions>=4.12.2",
"tqdm>=4.67.0", "tqdm>=4.67.0",
"python-dateutil>=2.9.0.post0", "python-dateutil>=2.9.0.post0",
@ -64,13 +63,17 @@ notebooks = [
"jupyterlab>=4.2.0", "jupyterlab>=4.2.0",
"ipywidgets>=8.1.2", "ipywidgets>=8.1.2",
] ]
trials = [
]
tests = [ tests = [
"pytest>=8.3.4", "pytest>=8.3.4",
"pytest-cov>=6.0.0", "pytest-cov>=6.0.0",
"pytest-xdist>=3.6.1", "pytest-xdist>=3.6.1",
] ]
# Alph relies on Pygraphviz which again relies on Graphviz, to sucessfully build
# Pygraphviz the MSVC toolchain should be installed on the target system if it is Windows
# (Linux not tested yet). The compiler needs additional information about the location of Graphviz
# files. This information is provided by extra options.
# --config-setting="--global-option=build_ext" --config-setting="--global-option=-IC:\Program Files\Graphviz\include" --config-setting="--global-option=-LC:\Program Files\Graphviz\lib"
[tool.ruff] [tool.ruff]
line-length = 94 line-length = 94
@ -129,7 +132,7 @@ directory = "reports/coverage"
[tool.bumpversion] [tool.bumpversion]
current_version = "0.1.0" current_version = "0.1.1"
parse = """(?x) parse = """(?x)
(?P<major>0|[1-9]\\d*)\\. (?P<major>0|[1-9]\\d*)\\.
(?P<minor>0|[1-9]\\d*)\\. (?P<minor>0|[1-9]\\d*)\\.
@ -187,15 +190,3 @@ verify_ssl = false
name = "pypi" name = "pypi"
url = "https://pypi.org/simple" url = "https://pypi.org/simple"
exclude_packages = ["lang-main*", "tom-plugin*"] exclude_packages = ["lang-main*", "tom-plugin*"]
# [tool.pdm.dev-dependencies]
# notebooks = [
# "jupyterlab>=4.2.0",
# "ipywidgets>=8.1.2",
# ]
# Alph relies on Pygraphviz which again relies on Graphviz, to sucessfully build
# Pygraphviz the MSVC toolchain should be installed on the target system if it is Windows
# (Linux not tested yet). The compiler needs additional information about the location of Graphviz
# files. This information is provided by extra options.
# --config-setting="--global-option=build_ext" --config-setting="--global-option=-IC:\Program Files\Graphviz\include" --config-setting="--global-option=-LC:\Program Files\Graphviz\lib"