diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index 58ac3905..e200270b 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -29,7 +29,7 @@ jobs: matrix: os: # see scipy wheels.yml GH actions - [ubuntu-22.04, manylinux, x86_64] - - [macos-12, macosx, x86_64] + - [macos-latest, macosx, x86_64] # - [macos-12, macosx_*, arm64] - [windows-2019, win, AMD64] diff --git a/treeple/tree/_classes.py b/treeple/tree/_classes.py index aa93d4c0..ac09af89 100644 --- a/treeple/tree/_classes.py +++ b/treeple/tree/_classes.py @@ -2441,7 +2441,7 @@ def __sklearn_tags__(self): # XXX: nans should be supportable in SPORF by just using RF-like splits on missing values # However, for MORF it is not supported tags = super().__sklearn_tags__() - tags.regressor_tags.multi_label = True + # tags.regressor_tags.multi_label = True TODO: add regression support tags.input_tags.allow_nan = False return tags