Skip to content

Commit

Permalink
Support Python 3.11 (#1362)
Browse files Browse the repository at this point in the history
* Add Python 3.11.0-rc2 to CI test matrix

* Bump to released Python 3.11

* Remove upper bound on `python_requires

* Linting
  • Loading branch information
ml-evs committed Nov 11, 2022
1 parent e9ffd76 commit 2394476
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
12 changes: 6 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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

Expand All @@ -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",
Expand Down Expand Up @@ -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",
Expand Down

0 comments on commit 2394476

Please sign in to comment.