Skip to content

Commit 877fbd2

Browse files
authored
Support Python 3.13 (#447)
1 parent 38e7d45 commit 877fbd2

File tree

8 files changed

+23
-18
lines changed

8 files changed

+23
-18
lines changed

.github/workflows/end_to_end.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@v1
2222
- name: Set up Python ${{ matrix.python-version }}
@@ -30,7 +30,7 @@ jobs:
3030
- name: Run end to end tests
3131
run: invoke end-to-end
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
@@ -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@v1
2222
- name: Set up Python ${{ matrix.python-version }}

.github/workflows/numerical.yml

Lines changed: 2 additions & 2 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@v1
2222
- 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]
1515
steps:
1616
- uses: actions/checkout@v1

.github/workflows/tutorials.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
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
steps:
1515
- uses: actions/checkout@v1
1616
- name: Set up Python ${{ matrix.python-version }}

.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@v1
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: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,24 +13,29 @@ 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 = [ 'copulas' ]
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'",
30-
'plotly>=5.10.0',
31+
"pandas>=2.1.1;python_version>='3.12' and python_version<'3.13'",
32+
"pandas>=2.2.3;python_version>='3.13'",
33+
"plotly>=5.10.0;python_version<'3.13'",
34+
"plotly>=5.12.0;python_version>='3.13'",
3135
"scipy>=1.7.3;python_version<'3.10'",
3236
"scipy>=1.9.2;python_version>='3.10' and python_version<'3.12'",
33-
"scipy>=1.12.0;python_version>='3.12'",
37+
"scipy>=1.12.0;python_version>='3.12' and python_version<'3.13'",
38+
"scipy>=1.14.1;python_version>='3.13'",
3439
]
3540

3641
[project.urls]

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py39-lint, py3{8,9,10,11,12}-{readme,unit,end_to_end,numerical,minimum,tutorials}
2+
envlist = py39-lint, py3{8,9,10,11,12,13}-{readme,unit,end_to_end,numerical,minimum,tutorials}
33

44
[testenv]
55
skipsdist = false

0 commit comments

Comments
 (0)