From df3f5c39e491ef70ff356a5d3c30b41b9345b643 Mon Sep 17 00:00:00 2001 From: Sebastiaan Huber Date: Wed, 4 Oct 2023 14:39:36 +0200 Subject: [PATCH] Dependencies: Drop support for Python 3.7 --- .github/workflows/cd.yml | 2 +- .github/workflows/ci.yml | 2 +- pyproject.toml | 3 +-- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 92605e6..2f589b4 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -58,7 +58,7 @@ jobs: strategy: matrix: - python-version: ['3.7', '3.8', '3.9', '3.10'] + python-version: ['3.8', '3.9', '3.10'] services: rabbitmq: diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8b7e33c..6fb731d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,7 +38,7 @@ jobs: strategy: matrix: - python-version: ['3.7', '3.8', '3.9', '3.10'] + python-version: ['3.8', '3.9', '3.10'] services: rabbitmq: diff --git a/pyproject.toml b/pyproject.toml index 84381d6..06759e3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,14 +17,13 @@ classifiers = [ 'Operating System :: POSIX :: Linux', 'Operating System :: MacOS :: MacOS X', 'Programming Language :: Python', - 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', 'Topic :: Scientific/Engineering' ] keywords = ['aiida', 'workflows', 'ase'] -requires-python = '>=3.7' +requires-python = '>=3.8' dependencies = [ 'aiida-core~=1.6', 'ase',