From 456373cfef4106399060db1deb2335b12023e5ee Mon Sep 17 00:00:00 2001 From: Sebastiaan Huber Date: Fri, 29 Apr 2022 08:37:26 +0200 Subject: [PATCH] Dependendies: Update Python requirements (#803) 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 --- .github/workflows/cd.yml | 2 +- .github/workflows/ci.yml | 2 +- pyproject.toml | 5 ++--- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index f33c9d3d6..8693e0672 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -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: diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 40eaf2729..2d943bd3f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: diff --git a/pyproject.toml b/pyproject.toml index dfe8ca63b..fc979a031 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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',