File tree 2 files changed +5
-25
lines changed
2 files changed +5
-25
lines changed Original file line number Diff line number Diff line change 47
47
python -c "import torch; print('PyTorch:', torch.__version__)"
48
48
python -c "import torch; print('CUDA:', torch.version.cuda)"
49
49
shell : bash
50
-
51
- # TODO: Include catboost in Python 3.13 CI when catboost supports it:
52
- # https://github.com/catboost/catboost/issues/2748
53
- - name : Exclude catboost on Python 3.13 from pyproject.toml
54
- if : ${{ inputs.python-version == '3.13' }}
55
- run : |
56
- sed -i '/ "catboost",/d' pyproject.toml
57
- cat pyproject.toml
58
- shell : bash
Original file line number Diff line number Diff line change 1
1
import os .path as osp
2
- import sys
3
2
import tempfile
4
3
5
4
import pytest
13
12
from torch_frame .testing .text_embedder import HashTextEmbedder
14
13
15
14
16
- @pytest .mark .parametrize (
17
- 'gbdt_cls' ,
18
- [
19
- # TODO: Run CatBoost test on Python 3.13 once supported
20
- # https://github.com/catboost/catboost/issues/2748
21
- pytest .param (
22
- CatBoost ,
23
- marks = pytest .mark .skipif (
24
- sys .version_info >= (3 , 13 ),
25
- reason = "Not supported on Python 3.13" ,
26
- ),
27
- ),
28
- XGBoost ,
29
- LightGBM ,
30
- ])
15
+ @pytest .mark .parametrize ('gbdt_cls' , [
16
+ CatBoost ,
17
+ XGBoost ,
18
+ LightGBM ,
19
+ ])
31
20
@pytest .mark .parametrize ('stypes' , [
32
21
[stype .numerical ],
33
22
[stype .categorical ],
You can’t perform that action at this time.
0 commit comments