Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ jobs:

- name: Install dependencies
run: |
pip install "pytest<8"
pip install .[docs,tests]
pip install black=="23.9.1" ruff=="0.0.292" mypy=="1.6.0"
pip uninstall --yes scikit-learn
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/deploy-model-card-creator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:

- name: Install dependencies
run: |
pip install "pytest<8"
pip install -e .[docs,tests]
python --version
pip --version
Expand Down
3 changes: 2 additions & 1 deletion skops/_min_dependencies.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
"""All minimum dependencies for scikit-learn."""
import argparse

PYTEST_MIN_VERSION = "5.0.1"
# TODO: flaky fails on pytest=8
PYTEST_MIN_VERSION = "7"

# 'build' and 'install' is included to have structured metadata for CI.
# It will NOT be included in setup's extras_require
Expand Down