diff --git a/noxfile.py b/noxfile.py index 036ff91f2..dcdebe0dd 100644 --- a/noxfile.py +++ b/noxfile.py @@ -118,14 +118,6 @@ def copy_docker_db_config_templates(session: nox.Session): session.run("cp", "-rL", "docker_db_config_template", str(target_path)) session.run("git", "add", str(target_path)) -@nox.session(name="lint:security", python=False) -def security_lint(session: nox.Session) -> None: - from exasol.toolbox.nox._lint import _security_lint - from exasol.toolbox.nox._shared import python_files - """Runs the security linter on the project""" - py_files = [f"{file}" for file in python_files(ROOT / "exasol_integration_test_docker_environment")] - _security_lint(session, py_files) - @nox.session(name="test:unit", python=False) def unit_tests(session: nox.Session) -> None: """Runs all unit tests""" diff --git a/poetry.lock b/poetry.lock index 554a69764..effca324d 100644 --- a/poetry.lock +++ b/poetry.lock @@ -745,13 +745,13 @@ types-requests = ">=2.31.0.6,<3.0.0.0" [[package]] name = "exasol-toolbox" -version = "0.17.0" +version = "0.18.0" description = "Your one-stop solution for managing all standard tasks and core workflows of your Python project." optional = false python-versions = "<4.0,>=3.9" files = [ - {file = "exasol_toolbox-0.17.0-py3-none-any.whl", hash = "sha256:35faa6c5f3e9409a77eb6f37ebf49ee5e6dda8d361bb4e32d2dee28c36d073d8"}, - {file = "exasol_toolbox-0.17.0.tar.gz", hash = "sha256:4b2e04f85fb8da1635cde589e4d15892145cbd4bed0b9cfd1a79b33b03d11340"}, + {file = "exasol_toolbox-0.18.0-py3-none-any.whl", hash = "sha256:db6a5f421b710ce4bbef7c8bb9a3e671c7d5d3400f6f95e8fa80e06344244e87"}, + {file = "exasol_toolbox-0.18.0.tar.gz", hash = "sha256:93986545bf9e077114f61627bca741bac778a02f9420d4612fe1bcca109afd51"}, ] [package.dependencies] @@ -2670,13 +2670,13 @@ test = ["coverage[toml] (>=7)", "mypy (>=1.2.0)", "pytest (>=7)"] [[package]] name = "typer" -version = "0.13.0" +version = "0.13.1" description = "Typer, build great CLIs. Easy to code. Based on Python type hints." optional = false python-versions = ">=3.7" files = [ - {file = "typer-0.13.0-py3-none-any.whl", hash = "sha256:d85fe0b777b2517cc99c8055ed735452f2659cd45e451507c76f48ce5c1d00e2"}, - {file = "typer-0.13.0.tar.gz", hash = "sha256:f1c7198347939361eec90139ffa0fd8b3df3a2259d5852a0f7400e476d95985c"}, + {file = "typer-0.13.1-py3-none-any.whl", hash = "sha256:5b59580fd925e89463a29d363e0a43245ec02765bde9fb77d39e5d0f29dd7157"}, + {file = "typer-0.13.1.tar.gz", hash = "sha256:9d444cb96cc268ce6f8b94e13b4335084cef4c079998a9f4851a90229a3bd25c"}, ] [package.dependencies] @@ -2864,4 +2864,4 @@ type = ["pytest-mypy"] [metadata] lock-version = "2.0" python-versions = ">=3.9,<4" -content-hash = "c5762e1cf64a14b4ff091683a85305416eb0ea9f2fd078be137904dfc363159b" +content-hash = "2dfe93393fead0ac050db6d9a3918897ec84234b90d77b35d3944ce238fdb7b7" diff --git a/pyproject.toml b/pyproject.toml index cb44f5f68..68708cbc6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -51,7 +51,7 @@ toml = ">=0.10.2" nox = "^2022.1.7" mypy = "^1.1.1" pyexasol = "^0.25.2" -exasol-toolbox = "^0.17.0" +exasol-toolbox = ">=0.18.0" [tool.poetry.scripts] itde = 'exasol_integration_test_docker_environment.main:main'