Skip to content

Commit ccd5243

Browse files
Merge pull request #81 from ie3-institute/df/#80-update-basic-dependencies
update basic dependencies and pre-commit-config
2 parents af46cf0 + 8d67982 commit ccd5243

File tree

5 files changed

+2370
-173
lines changed

5 files changed

+2370
-173
lines changed

.github/workflows/simple-ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
#----------------------------------------------
1414
# check-out repo and set-up python
1515
#----------------------------------------------
16-
- uses: actions/checkout@v3
17-
- uses: actions/setup-python@v4
16+
- uses: actions/checkout@v5
17+
- uses: actions/setup-python@v6
1818
with:
19-
python-version: '3.10'
19+
python-version: '3.11'
2020
#----------------------------------------------
2121
# load pip cache if cache exists
2222
#----------------------------------------------
@@ -40,7 +40,7 @@ jobs:
4040
fail-fast: true
4141
matrix:
4242
os: [ "ubuntu-latest", "macos-latest" ]
43-
python-version: [ "3.10"]
43+
python-version: [ "3.11"]
4444
runs-on: ${{ matrix.os }}
4545
steps:
4646
#----------------------------------------------
@@ -80,7 +80,7 @@ jobs:
8080
# install your root project, if required
8181
#----------------------------------------------
8282
- name: Install library
83-
run: poetry install --no-interaction
83+
run: poetry install --no-interaction --no-root
8484
#----------------------------------------------
8585
# run test suite
8686
#----------------------------------------------

.idea/python-template.iml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.pre-commit-config.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
repos:
22
- repo: https://github.com/psf/black
3-
rev: 22.6.0
3+
rev: 25.9.0
44
hooks:
55
- id: black
66
- repo: https://github.com/PyCQA/flake8
7-
rev: 5.0.4
7+
rev: 7.3.0
88
hooks:
99
- id: flake8
1010
- repo: https://github.com/PyCQA/isort
11-
rev: 5.10.1
11+
rev: 6.0.0
1212
hooks:
13-
- id: isort
13+
- id: isort

0 commit comments

Comments
 (0)