Skip to content

Commit

Permalink
updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ClaasRostock committed Nov 19, 2023
1 parent 969aa77 commit 172b721
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/_build_package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
# python-version: '3.11'
# cache: 'pip' # cache pip dependencies
# - name: Install cibuildwheel
# run: python -m pip install cibuildwheel==2.3.1
# run: python -m pip install cibuildwheel==2.16
# - name: Build wheels
# run: python -m cibuildwheel --output-dir wheels
# - uses: actions/upload-artifact@v3
Expand Down
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.9'
version: '==23.11'

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.0.290
run: pip install ruff==0.1.6
- 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.332
run: pip install pyright==1.1.336
- name: Run pyright
run: pyright .
8 changes: 4 additions & 4 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
pytest>=7.4
pytest-cov>=4.1
pytest-randomly>=3.15
black[jupyter]>=23.10
ruff>=0.1.2
pyright==1.1.332
black[jupyter]==23.11
ruff==0.1.6
pyright==1.1.336
Sphinx>=7.2
sphinx-argparse-cli>=1.11
myst-parser>=2.0
furo>=2023.9.10
sourcery>=1.12.0
sourcery==1.14

-r requirements.txt
-r requirements-types.txt
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
lxml>=4.9
jsonschema>=4.19
numpy>=1.24
jsonschema>=4.20
numpy>=1.26
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ include_package_data = True
python_requires = >=3.9
install_requires =
lxml>=4.9
jsonschema>=4.19
numpy>=1.24
jsonschema>=4.20
numpy>=1.26

[options.packages.find]
where = src
Expand Down

0 comments on commit 172b721

Please sign in to comment.