Skip to content

Commit 24c1b44

Browse files
committed
add python 3.13 support
1 parent 00123ad commit 24c1b44

File tree

7 files changed

+17
-13
lines changed

7 files changed

+17
-13
lines changed

.github/workflows/integration.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/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@v1

.github/workflows/unit.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 }}

INSTALL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Requirements
44

55
**DeepEcho** has been developed and tested on
6-
[Python 3.8, 3.9, 3.10, 3.11 and 3.12](https://www.python.org/downloads/)
6+
[Python 3.8, 3.9, 3.10, 3.11, 3.12 and 3.13](https://www.python.org/downloads/)
77

88
Also, although it is not strictly required, the usage of a [virtualenv](
99
https://virtualenv.pypa.io/en/latest/) is highly recommended in order to avoid

pyproject.toml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,24 +13,28 @@ 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 = ['deepecho', 'DeepEcho']
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',
3539
]
3640

tox.ini

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

44
[testenv]
55
skipsdist = false

0 commit comments

Comments
 (0)