diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 27f3ae021..345dcae82 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -142,7 +142,7 @@ jobs: fail-fast: false max-parallel: 4 matrix: - python-version: ['3.8', '3.9', '3.10'] + python-version: ['3.8', '3.9', '3.10', '3.11'] services: mongo: diff --git a/setup.py b/setup.py index 0e9c2ee44..1bcc37ad7 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,7 @@ -from pathlib import Path import re -from setuptools import setup, find_packages +from pathlib import Path + +from setuptools import find_packages, setup module_dir = Path(__file__).resolve().parent @@ -26,9 +27,8 @@ # Client minded -aiida_deps = [ - "aiida-core~=2.1", -] +aiida_deps = ["aiida-core~=2.1"] + http_client_deps = [ "httpx~=0.23", "rich~=12.6", @@ -98,7 +98,7 @@ "Topic :: Database :: Database Engines/Servers", "Topic :: Database :: Front-Ends", ], - python_requires=">=3.8,<3.11", + python_requires=">=3.8", install_requires=[ "lark~=1.1", "fastapi~=0.86",