Skip to content

Commit be72e92

Browse files
authored
Merge branch 'main' into pre-commit-ci-update-config
2 parents 85aa64e + e736116 commit be72e92

File tree

9 files changed

+121
-94
lines changed

9 files changed

+121
-94
lines changed

.github/workflows/code_checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
with:
3434
virtualenvs-create: true
3535
virtualenvs-in-project: true
36-
- uses: actions/setup-python@v5.1.1
36+
- uses: actions/setup-python@v5.2.0
3737
with:
3838
python-version: '3.10'
3939
cache: 'poetry'

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Install poetry
1818
run: python3 -m pip install --upgrade pip && python3 -m pip install poetry
1919

20-
- uses: actions/setup-python@v5.1.1
20+
- uses: actions/setup-python@v5.2.0
2121
with:
2222
python-version: '3.10'
2323
cache: 'poetry'

.github/workflows/integration_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
- uses: actions/checkout@v4.1.7
4444
- name: Install poetry
4545
run: python3 -m pip install --upgrade pip && python3 -m pip install poetry
46-
- uses: actions/setup-python@v5.1.1
46+
- uses: actions/setup-python@v5.2.0
4747
with:
4848
python-version: '3.10'
4949
cache: 'poetry'

.github/workflows/package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- uses: actions/checkout@v4.1.7
3030
- name: Install pip
3131
run: python3 -m pip install --upgrade pip
32-
- uses: actions/setup-python@v5.1.1
32+
- uses: actions/setup-python@v5.2.0
3333
with:
3434
python-version: '3.10'
3535
- name: Install package and test import

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- uses: actions/checkout@v4.1.7
1616
- name: Install poetry
1717
run: python3 -m pip install --upgrade pip && python3 -m pip install poetry
18-
- uses: actions/setup-python@v5.1.1
18+
- uses: actions/setup-python@v5.2.0
1919
with:
2020
python-version: '3.10'
2121
- name: Build package

.github/workflows/unit_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- uses: actions/checkout@v4.1.7
3434
- name: Install dependencies, run unit tests and coverage report
3535
run: python3 -m pip install --upgrade pip && python3 -m pip install poetry
36-
- uses: actions/setup-python@v5.1.1
36+
- uses: actions/setup-python@v5.2.0
3737
with:
3838
python-version: '3.10'
3939
cache: 'poetry'

cyclops/report/templates/model_report/macros.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<li>
2929
{{ values }}
3030
</li>
31-
{% else %}
31+
{% elif values is not none %}
3232
<li>
3333
{% for name, value in values %}
3434
{% if value %}

poetry.lock

Lines changed: 113 additions & 86 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ readme = "README.md"
1515
python = ">=3.9, <3.12"
1616
pandas = {version = "^2.1", extras = ["performance"]}
1717
numpy = "^1.24.0"
18-
scikit-learn = "^1.4.0"
18+
scikit-learn = "^1.3.0"
1919
scipy = "^1.11.0"
2020
matplotlib = "^3.8.3"
2121
datasets = "^2.15.0"

0 commit comments

Comments
 (0)