From 50392b76f8e1d7358729608d7d2aefd489892c22 Mon Sep 17 00:00:00 2001 From: Benedikt Fuchs Date: Fri, 13 Sep 2024 12:59:31 +0200 Subject: [PATCH] Update pyproject.toml update dependencies --- pyproject.toml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 69e4bc7..4f40de5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,13 +12,15 @@ repository = "https://github.com/helpmefindaname/python-template" python_template = "python_template.cli:main" [tool.poetry.dependencies] -python = "^3.7" +python = "^3.9" [tool.poetry.group.dev.dependencies] pytest = "^7.2.0" pytest-mypy = "^0.10.3" +pytest-ruff = "^0.4.1" +pytest-black-ng = "^0.4.1" black = "^22.12.0" -ruff = "^0.0.205" +ruff = "^0.6.4" pytest-github-actions-annotate-failures = "^0.1.8" pytest-xdist = "^3.1.0" @@ -29,12 +31,12 @@ build-backend = "poetry.core.masonry.api" [tool.black] line-length = 120 -target-version = ['py310'] +target-version = ['py312'] [tool.ruff] line-length = 120 -target-version = 'py310' +target-version = 'py312' [tool.pytest.ini_options] addopts = "--mypy -n auto"