File tree Expand file tree Collapse file tree 2 files changed +13
-2
lines changed
Expand file tree Collapse file tree 2 files changed +13
-2
lines changed Original file line number Diff line number Diff line change 2424 python-version : ${{ matrix.python-version }}
2525 - name : Install UV
2626 run : curl -LsSf https://github.com/astral-sh/uv/releases/latest/download/uv-installer.sh | sh
27- - name : Add UV to path
28- run : source $HOME/.local/bin/env || echo
27+ - name : Add UV to PATH on Windows
28+ if : " startsWith(runner.os, 'windows')"
29+ run : echo "::add-path::/c/Users/runneradmin/.local/bin"
2930 - name : Install hatch
3031 run : uv pip install --system hatch
3132 - name : Install swig
Original file line number Diff line number Diff line change @@ -1121,6 +1121,11 @@ def _supports_single_sample(self) -> bool:
11211121 def _supports_multioutput (self ) -> bool :
11221122 return False
11231123
1124+ def _more_tags (self ):
1125+ # set non-deterministic
1126+ # since this class can otherwise fail the check_methods_subset_invariance test due to low precision (?)
1127+ return utils .join_dicts (super ()._more_tags (), dict (non_deterministic = True ))
1128+
11241129
11251130class FTTransformerConstructorMixin :
11261131 def __init__ (self ,
@@ -1369,6 +1374,11 @@ def _supports_single_sample(self) -> bool:
13691374 def _supports_multioutput (self ) -> bool :
13701375 return False
13711376
1377+ def _more_tags (self ):
1378+ # set non-deterministic
1379+ # since this class can otherwise fail the check_methods_subset_invariance test due to low precision (?)
1380+ return utils .join_dicts (super ()._more_tags (), dict (non_deterministic = True ))
1381+
13721382
13731383class TabrConstructorMixin :
13741384 def __init__ (self ,
You can’t perform that action at this time.
0 commit comments