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
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,20 @@ repos:
hooks:
- id: mypy
name: mypy openml
files: openml/*
files: openml/.*
- id: mypy
name: mypy tests
files: tests/*
files: tests/.*
- repo: https://gitlab.com/pycqa/flake8
rev: 3.8.3
hooks:
- id: flake8
name: flake8 openml
files: openml/*
files: openml/.*
additional_dependencies:
- flake8-print==3.1.4
- id: flake8
name: flake8 tests
files: tests/*
files: tests/.*
additional_dependencies:
- flake8-print==3.1.4
2 changes: 2 additions & 0 deletions doc/progress.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,12 @@ Changelog

0.13.0
~~~~~~
* FIX#1030: ``pre-commit`` hooks now no longer should issue a warning.
* FIX#1110: Make arguments to ``create_study`` and ``create_suite`` that are defined as optional by the OpenML XSD actually optional.
* MAIN#1088: Do CI for Windows on Github Actions instead of Appveyor.



0.12.2
~~~~~~

Expand Down
2 changes: 1 addition & 1 deletion openml/study/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def get_nested_ids_from_result_dict(key: str, subkey: str) -> Optional[List]:
) # type: BaseStudy

elif main_entity_type in ["tasks", "task"]:

tasks = cast("List[int]", tasks)
study = OpenMLBenchmarkSuite(
suite_id=study_id,
alias=alias,
Expand Down