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 Dec 19, 2023
1 parent 2580037 commit 137b5b5
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 @@ -27,7 +27,7 @@ jobs:
- name: Install dependencies
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 @@ -45,6 +45,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 requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
pytest>=7.4
pytest-cov>=4.1
pytest-randomly>=3.15
black[jupyter]==23.11
ruff==0.1.6
pyright==1.1.336
black[jupyter]==23.12
ruff==0.1.8
pyright==1.1.338
Sphinx>=7.2
sphinx-argparse-cli>=1.11
myst-parser>=2.0
Expand Down

0 comments on commit 137b5b5

Please sign in to comment.