Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/update_dependencies'
Browse files Browse the repository at this point in the history
  • Loading branch information
ClaasRostock committed Mar 1, 2024
2 parents ced5197 + adeb97f commit 3c66186
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/_code_quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Install dependencies
run: pip install -r requirements.txt
- name: Install ruff
run: pip install ruff==0.2.1
run: pip install ruff==0.3.0
- 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.350
run: pip install pyright==1.1.352
- name: Run pyright
run: pyright .
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ The changelog format is based on [Keep a Changelog](https://keepachangelog.com/e

## [Unreleased]

### Dependencies
* updated to ruff==0.3.0 (from ruff==0.2.1)
* updated to pyright==1.1.352 (from pyright==1.1.350)
* updated to numpy>=1.26,<2.0 (from numpy>=1.26
)

### Changed
* Changed publishing workflow to use OpenID Connect (Trusted Publisher Management) when publishing to PyPI
* Updated copyright statement
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ classifiers = [
]
dependencies = [
"lxml>=5.1",
"numpy>=1.26",
"numpy>=1.26,<2.0",
"pandas>=2.2",
"matplotlib>=3.8",
"graphviz>=0.20",
Expand Down
4 changes: 2 additions & 2 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
pytest>=7.4
pytest-cov>=4.1
black[jupyter]==24.1
ruff==0.2.1
pyright==1.1.350
ruff==0.3.0
pyright==1.1.352
Sphinx>=7.2
sphinx-argparse-cli>=1.11
myst-parser>=2.0
Expand Down
3 changes: 1 addition & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
lxml>=5.1
numpy>=1.26
pandas>=2.2
numpy>=1.26,<2.0pandas>=2.2
matplotlib>=3.8
graphviz>=0.20

Expand Down

0 comments on commit 3c66186

Please sign in to comment.