Skip to content

Commit f0a203f

Browse files
committed
add support for python 3.13
1 parent 42ca6f3 commit f0a203f

File tree

5 files changed

+18
-14
lines changed

5 files changed

+18
-14
lines changed

.github/workflows/integration.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ jobs:
1010
runs-on: ${{ matrix.os }}
1111
strategy:
1212
matrix:
13-
python-version: ['3.8', '3.9', '3.10', '3.11','3.12']
13+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
1414
os: [ubuntu-latest, windows-latest]
1515
include:
1616
- os: macos-latest
1717
python-version: '3.8'
1818
- os: macos-latest
19-
python-version: '3.12'
19+
python-version: '3.13'
2020
steps:
2121
- uses: actions/checkout@v4
2222
- name: Set up Python ${{ matrix.python-version }}
@@ -30,7 +30,7 @@ jobs:
3030
- name: Run integration tests
3131
run: invoke integration
3232

33-
- if: matrix.os == 'ubuntu-latest' && matrix.python-version == 3.12
33+
- if: matrix.os == 'ubuntu-latest' && matrix.python-version == 3.13
3434
name: Upload integration codecov report
3535
uses: codecov/codecov-action@v4
3636
with:

.github/workflows/minimum.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ jobs:
1111
runs-on: ${{ matrix.os }}
1212
strategy:
1313
matrix:
14-
python-version: ['3.8', '3.9', '3.10', '3.11','3.12']
14+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
1515
os: [ubuntu-latest, windows-latest]
1616
include:
1717
- os: macos-13
1818
python-version: '3.8'
1919
- os: macos-latest
20-
python-version: '3.12'
20+
python-version: '3.13'
2121
steps:
2222
- uses: actions/checkout@v4
2323
- name: Set up Python ${{ matrix.python-version }}

.github/workflows/readme.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ${{ matrix.os }}
1111
strategy:
1212
matrix:
13-
python-version: ['3.8', '3.9', '3.10', '3.11','3.12']
13+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
1414
os: [ubuntu-latest, macos-latest] # skip windows bc rundoc fails
1515
steps:
1616
- uses: actions/checkout@v4

.github/workflows/unit.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ jobs:
1010
runs-on: ${{ matrix.os }}
1111
strategy:
1212
matrix:
13-
python-version: ['3.8', '3.9', '3.10', '3.11','3.12']
13+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
1414
os: [ubuntu-latest, windows-latest]
1515
include:
1616
- os: macos-latest
1717
python-version: '3.8'
1818
- os: macos-latest
19-
python-version: '3.12'
19+
python-version: '3.13'
2020
steps:
2121
- uses: actions/checkout@v4
2222
- name: Set up Python ${{ matrix.python-version }}
@@ -30,7 +30,7 @@ jobs:
3030
- name: Run unit tests
3131
run: invoke unit
3232

33-
- if: matrix.os == 'ubuntu-latest' && matrix.python-version == 3.12
33+
- if: matrix.os == 'ubuntu-latest' && matrix.python-version == 3.13
3434
name: Upload unit codecov report
3535
uses: codecov/codecov-action@v4
3636
with:

pyproject.toml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,26 +13,30 @@ classifiers = [
1313
'Programming Language :: Python :: 3.10',
1414
'Programming Language :: Python :: 3.11',
1515
'Programming Language :: Python :: 3.12',
16+
'Programming Language :: Python :: 3.13',
1617
'Topic :: Scientific/Engineering :: Artificial Intelligence',
1718
]
1819
keywords = ['ctgan', 'CTGAN']
1920
dynamic = ['version']
2021
license = { text = 'BSL-1.1' }
21-
requires-python = '>=3.8,<3.13'
22+
requires-python = '>=3.8,<3.14'
2223
readme = 'README.md'
2324
dependencies = [
2425
"numpy>=1.21.0;python_version<'3.10'",
2526
"numpy>=1.23.3;python_version>='3.10' and python_version<'3.12'",
26-
"numpy>=1.26.0;python_version>='3.12'",
27+
"numpy>=1.26.0;python_version>='3.12' and python_version<'3.13'",
28+
"numpy>=2.1.0;python_version>='3.13'",
2729
"pandas>=1.4.0;python_version<'3.11'",
2830
"pandas>=1.5.0;python_version>='3.11' and python_version<'3.12'",
29-
"pandas>=2.1.1;python_version>='3.12'",
31+
"pandas>=2.1.1;python_version>='3.12' and python_version<'3.13'",
32+
"pandas>=2.2.3;python_version>='3.13'",
3033
"torch>=1.9.0;python_version<'3.10'",
3134
"torch>=1.11.0;python_version>='3.10' and python_version<'3.11'",
3235
"torch>=2.0.0;python_version>='3.11' and python_version<'3.12'",
33-
"torch>=2.2.0;python_version>='3.12'",
36+
"torch>=2.2.0;python_version>='3.12' and python_version<'3.13'",
37+
"torch>=2.6.0;python_version>='3.13'",
3438
'tqdm>=4.29,<5',
35-
'rdt>=1.11.0',
39+
'rdt @ git+https://github.com/sdv-dev/RDT@main',
3640
]
3741

3842
[project.urls]

0 commit comments

Comments
 (0)