Skip to content

Commit 8dd64c5

Browse files
authored
Fix minimum test version due to RealTabFormer and Torch releases (#435)
1 parent a42da1f commit 8dd64c5

File tree

3 files changed

+14
-5
lines changed

3 files changed

+14
-5
lines changed

.github/workflows/integration.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,16 @@ jobs:
1212
matrix:
1313
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
1414
os: [ubuntu-latest, windows-latest]
15+
exclude:
16+
- os: windows-latest
17+
python-version: '3.13'
1518
include:
1619
- os: macos-latest
1720
python-version: '3.8'
1821
- os: macos-latest
1922
python-version: '3.13'
23+
- os: windows-latest
24+
python-version: '3.13.6'
2025
steps:
2126
- uses: actions/checkout@v4
2227
- name: Set up Python ${{ matrix.python-version }}

.github/workflows/minimum.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,16 @@ jobs:
1717
matrix:
1818
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
1919
os: [ubuntu-latest, windows-latest]
20+
exclude:
21+
- os: windows-latest
22+
python-version: '3.13'
2023
include:
21-
- os: macos-13
24+
- os: macos-latest
2225
python-version: '3.8'
2326
- os: macos-latest
2427
python-version: '3.13'
28+
- os: windows-latest
29+
python-version: '3.13.6'
2530
steps:
2631
- uses: actions/checkout@v4
2732
- name: Set up Python ${{ matrix.python-version }}

pyproject.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,9 @@ sdgym = { main = 'sdgym.cli.__main__:main' }
7171
[project.optional-dependencies]
7272
dask = ['dask', 'distributed']
7373
realtabformer = [
74-
'realtabformer>=0.2.2',
75-
"torch>=2.1.0;python_version>='3.8' and python_version<'3.12'",
76-
"torch>=2.2.0;python_version>='3.12' and python_version<'3.13'",
77-
"torch>=2.6.0;python_version>='3.13'",
74+
'realtabformer>=0.2.3',
75+
"torch>=2.2.0;python_version>='3.8' and python_version<'3.9'",
76+
"torch>=2.6.0;python_version>='3.9'",
7877
'transformers<4.51',
7978
]
8079
test = [

0 commit comments

Comments
 (0)