Skip to content

Commit b8a5272

Browse files
committed
Python: support 3.13; drop 3.8/3.9
Python 3.8/3.9 are both end-of-life, and we drop them.
1 parent 45f121d commit b8a5272

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.github/workflows/cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858

5959
strategy:
6060
matrix:
61-
python-version: ['3.10','3.12']
61+
python-version: ['3.10','3.12','3.13']
6262

6363
services:
6464
postgres:

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737

3838
strategy:
3939
matrix:
40-
python-version: ['3.10','3.12']
40+
python-version: ['3.10','3.12','3.13']
4141

4242
services:
4343
rabbitmq:

pyproject.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,13 @@ classifiers = [
1717
'Operating System :: POSIX :: Linux',
1818
'Operating System :: MacOS :: MacOS X',
1919
'Programming Language :: Python',
20-
'Programming Language :: Python :: 3.8',
21-
'Programming Language :: Python :: 3.9',
2220
'Programming Language :: Python :: 3.10',
2321
'Programming Language :: Python :: 3.11',
2422
'Programming Language :: Python :: 3.12',
23+
'Programming Language :: Python :: 3.13',
2524
]
2625
keywords = ['aiida', 'workflows']
27-
requires-python = '>=3.8'
26+
requires-python = '>=3.10'
2827
dependencies = [
2928
"aiida-core~=2.3",
3029
"aiida-quantumespresso~=4.10",

0 commit comments

Comments
 (0)