From c8e312c6bda24970735c37fa1ff1348ae7baa455 Mon Sep 17 00:00:00 2001 From: Sebastiaan Huber Date: Tue, 8 Nov 2022 12:45:28 +0100 Subject: [PATCH] Dependencies: Add support for Python 3.11 (#857) --- .github/workflows/cd.yml | 2 +- .github/workflows/ci.yml | 2 +- .github/workflows/nightly.yml | 2 +- pyproject.toml | 1 + 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 863c9d5dc..161f65476 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -58,7 +58,7 @@ jobs: strategy: matrix: - python-version: ['3.8', '3.9', '3.10'] + python-version: ['3.8', '3.9', '3.10', '3.11'] services: postgres: diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1da649eb8..e1c9a383e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,7 +36,7 @@ jobs: strategy: matrix: - python-version: ['3.8', '3.9', '3.10'] + python-version: ['3.8', '3.9', '3.10', '3.11'] services: postgres: diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 2a00b6de0..36a85712c 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -20,7 +20,7 @@ jobs: strategy: matrix: - python-version: ['3.8', '3.9', '3.10'] + python-version: ['3.8', '3.9', '3.10', '3.11'] services: postgres: diff --git a/pyproject.toml b/pyproject.toml index 688d90712..d8c8dfef7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,6 +17,7 @@ classifiers = [ 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', ] keywords = ['aiida', 'workflows'] requires-python = '>=3.8'