Skip to content

Commit f85e719

Browse files
committed
Add py3.12
1 parent 4ad94da commit f85e719

File tree

7 files changed

+20
-19
lines changed

7 files changed

+20
-19
lines changed

.github/workflows/integration.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']
13+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
1414
os: [ubuntu-latest, macos-latest, windows-latest]
1515
steps:
1616
- uses: actions/checkout@v1

.github/workflows/minimum.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']
13+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
1414
os: [ubuntu-latest, macos-latest, windows-latest]
1515
steps:
1616
- uses: actions/checkout@v1

.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']
13+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
1414
os: [ubuntu-latest, macos-latest] # skip windows bc rundoc fails
1515
steps:
1616
- uses: actions/checkout@v1

.github/workflows/unit.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']
13+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
1414
os: [ubuntu-latest, macos-latest, windows-latest]
1515
steps:
1616
- uses: actions/checkout@v1

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 and 3.11](https://www.python.org/downloads/)
6+
[Python 3.8, 3.9, 3.10, 3.11 and 3.12](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: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -12,23 +12,24 @@ classifiers = [
1212
'Programming Language :: Python :: 3.9',
1313
'Programming Language :: Python :: 3.10',
1414
'Programming Language :: Python :: 3.11',
15+
'Programming Language :: Python :: 3.12',
1516
'Topic :: Scientific/Engineering :: Artificial Intelligence',
1617
]
1718
keywords = ['deepecho', 'DeepEcho']
1819
dynamic = ['version']
1920
license = { text = 'BSL-1.1' }
20-
requires-python = '>=3.8,<3.12'
21+
requires-python = '>=3.8,<3.13'
2122
readme = 'README.md'
2223
dependencies = [
2324
"numpy>=1.20.0,<2;python_version<'3.10'",
24-
"numpy>=1.23.3,<2;python_version>='3.10'",
25+
"numpy>=1.23.3;python_version>='3.10'",
2526
"pandas>=1.1.3;python_version<'3.10'",
2627
"pandas>=1.3.4;python_version>='3.10' and python_version<'3.11'",
2728
"pandas>=1.5.0;python_version>='3.11'",
2829
"torch>=1.8.0;python_version<'3.10'",
2930
"torch>=1.11.0;python_version>='3.10' and python_version<'3.11'",
3031
"torch>=2.0.0;python_version>='3.11'",
31-
'tqdm>=4.15,<5',
32+
'tqdm>=4.15',
3233
]
3334

3435
[project.urls]
@@ -41,31 +42,31 @@ dependencies = [
4142
test = [
4243
'pytest>=3.4.2',
4344
'pytest-cov>=2.6.0',
44-
'pytest-rerunfailures>=9.0.0,<10',
45-
'jupyter>=1.0.0,<2',
46-
'rundoc>=0.4.3,<0.5',
45+
'pytest-rerunfailures>=9.0.0',
46+
'jupyter>=1.0.0',
47+
'rundoc>=0.4.3',
4748
'pytest-runner >= 2.11.1',
48-
'tomli>=2.0.0,<3',
49+
'tomli>=2.0.0',
4950
]
5051
dev = [
5152
'deepecho[test]',
5253

5354
# general
5455
'setuptools<49.2',
55-
'bump-my-version>=0.18.3,<1',
56+
'bump-my-version>=0.18.3',
5657
'pip>=9.0.1',
57-
'watchdog>=0.8.3,<0.11',
58+
'watchdog>=4.0.0',
5859

5960
# style check
60-
'ruff>=0.3.2,<1',
61+
'ruff>=0.3.2',
6162

6263
# distribute on PyPI
63-
'twine>=1.10.0,<4',
64+
'twine>=1.10.0',
6465
'wheel>=0.30.0',
6566

6667
# Advanced testing
67-
'coverage>=4.5.1,<6',
68-
'tox>=2.9.1,<4',
68+
'coverage>=4.5.1',
69+
'tox>=2.9.1',
6970

7071
# Invoking test commands
7172
'invoke'

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}-{readme,unit,integration,minimum,tutorials}
2+
envlist = py38-lint, py3{8,9,10,11,12}-{readme,unit,integration,minimum,tutorials}
33

44
[testenv]
55
skipsdist = false

0 commit comments

Comments
 (0)