Skip to content

Commit ec219f6

Browse files
mbercxsphuber
authored andcommitted
🔧 Remove Python 3.10 support
Trying to install the package for Python 3.10 fails due to an issue with PyYAML==5.4.1, see: yaml/pyyaml#724 As we are currently working on a release for `aiida-core` v1.6.X, which does not support Python 3.10, we remove support for Python 3.10 here as well.
1 parent 4023b61 commit ec219f6

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/ci.yml

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

3939
strategy:
4040
matrix:
41-
python-version: ['3.8', '3.9', '3.10']
41+
python-version: ['3.8', '3.9']
4242

4343
services:
4444
rabbitmq:

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,9 @@ classifiers = [
1717
'Programming Language :: Python',
1818
'Programming Language :: Python :: 3.8',
1919
'Programming Language :: Python :: 3.9',
20-
'Programming Language :: Python :: 3.10',
2120
]
2221
keywords = ['aiida', 'workflows']
23-
requires-python = '>=3.8'
22+
requires-python = '>=3.8,<3.10'
2423
dependencies = [
2524
'abipy==0.9.6',
2625
'aiida-abinit~=0.4.0',

0 commit comments

Comments
 (0)