Skip to content

Commit

Permalink
updated versions of black, ruff, pyright
Browse files Browse the repository at this point in the history
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)
  • Loading branch information
ClaasRostock committed Jan 10, 2024
1 parent c585eee commit 499bf97
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/_code_quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
options: '--check --diff'
src: '.'
jupyter: true
version: '==23.11'
version: '==23.12'

ruff:
runs-on: ubuntu-latest
Expand All @@ -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 .

Expand All @@ -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 .
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 499bf97

Please sign in to comment.