Skip to content

Commit 5ea605f

Browse files
authored
Merge branch 'autogluon:master' into revert_change
2 parents 4ced5a4 + 5a9cbae commit 5ea605f

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

tabular/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
"fastai>=2.3.1,<2.8", # <{N+1} upper cap, where N is the latest released minor version
5050
],
5151
"tabpfn": [
52-
# versions below 0.1.11 are broken
52+
# versions below 2.0.2 are broken (or yanked)
5353
"tabpfn>=0.1.11,<0.2", # <{N+1} upper cap, where N is the latest released minor version
5454
],
5555
"tabpfnmix": [
@@ -106,7 +106,7 @@
106106

107107

108108
test_requires = []
109-
for test_package in ["tabpfn", "tabpfnmix", "imodels", "vowpalwabbit", "skl2onnx"]:
109+
for test_package in ["tabpfnmix", "imodels", "vowpalwabbit", "skl2onnx"]:
110110
test_requires += extras_require[test_package]
111111
extras_require["tests"] = test_requires
112112
install_requires = ag.get_dependency_version_ranges(install_requires)

tabular/tests/unittests/models/test_tabpfn.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
1+
import pytest
2+
13
from autogluon.tabular.models.tabpfn.tabpfn_model import TabPFNModel
24
from autogluon.tabular.testing import FitHelper
35

46

57
def test_tabpfn_binary():
8+
pytest.skip("TabPFN install is broken, skipping test")
69
fit_args = dict(
710
hyperparameters={TabPFNModel: {}},
811
)
@@ -11,6 +14,7 @@ def test_tabpfn_binary():
1114

1215

1316
def test_tabpfn_multiclass():
17+
pytest.skip("TabPFN install is broken, skipping test")
1418
fit_args = dict(
1519
hyperparameters={TabPFNModel: {}},
1620
)

0 commit comments

Comments
 (0)