From 499bf97f7239133f38310e397dba6edbb58043b1 Mon Sep 17 00:00:00 2001 From: Claas Date: Wed, 10 Jan 2024 10:35:26 +0100 Subject: [PATCH] updated versions of black, ruff, pyright updated to black[jupyter]==23.12 (from black[jupyter]==23.11) updated to ruff==0.1.8 (from ruff==0.1.6) updated to pyright==1.1.338 (from pyright==1.1.336) --- .github/workflows/_code_quality.yml | 6 +++--- pyproject.toml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/_code_quality.yml b/.github/workflows/_code_quality.yml index 1e96887..de7d8bc 100644 --- a/.github/workflows/_code_quality.yml +++ b/.github/workflows/_code_quality.yml @@ -13,7 +13,7 @@ jobs: options: '--check --diff' src: '.' jupyter: true - version: '==23.11' + version: '==23.12' ruff: runs-on: ubuntu-latest @@ -31,7 +31,7 @@ jobs: run: | pip install -r requirements.txt - name: Install ruff - run: pip install ruff==0.1.6 + run: pip install ruff==0.1.8 - name: Run ruff run: ruff . @@ -52,6 +52,6 @@ jobs: pip install -r requirements.txt pip install pytest - name: Install pyright - run: pip install pyright==1.1.336 + run: pip install pyright==1.1.338 - name: Run pyright run: pyright . diff --git a/pyproject.toml b/pyproject.toml index 062fe9b..4ca3762 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,9 +22,9 @@ pydantic = "^2.5" optional = true [tool.poetry.group.dev.dependencies] -black = { version = "^23.11", extras = ["jupyter"] } -ruff = "^0.1.6" # linter -pyright = "^1.1.336" +black = { version = "^23.12", extras = ["jupyter"] } +ruff = "^0.1.8" # linter +pyright = "^1.1.338" tox = "^4.11.1" pytest = "^7.4.1" pytest-cov = "^4.1"