Skip to content

Commit

Permalink
🔧 Remove Python 3.10 support
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
mbercx committed Aug 29, 2023
1 parent 2283d6e commit f026183
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:

strategy:
matrix:
python-version: ['3.8', '3.9', '3.10']
python-version: ['3.8', '3.9']

services:
rabbitmq:
Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ classifiers = [
'Programming Language :: Python',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
]
keywords = ['aiida', 'workflows']
requires-python = '>=3.8'
Expand Down

0 comments on commit f026183

Please sign in to comment.