Skip to content

Commit

Permalink
Dependendies: Update Python requirements (#803)
Browse files Browse the repository at this point in the history
Align requirements with `aiida-core==2.0` which was just released:

* Drop support for Python 3.6 and 3.7
* Add support for Python 3.10
  • Loading branch information
sphuber authored Apr 29, 2022
1 parent 0c8a611 commit 456373c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:

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

services:
postgres:
Expand Down
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.6', '3.7', '3.8', '3.9']
python-version: ['3.8', '3.9', '3.10']

services:
postgres:
Expand Down
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,12 @@ classifiers = [
'Framework :: AiiDA',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
]
keywords = ['aiida', 'workflows']
requires-python = '>=3.6'
requires-python = '>=3.8'
dependencies = [
'psycopg2-binary<2.9',
'aiida_core[atomic_tools]~=1.4,>=1.4.4',
Expand Down

0 comments on commit 456373c

Please sign in to comment.