From d3e82b918f01832c5dec945dc99943a11444a8b4 Mon Sep 17 00:00:00 2001 From: Debanjum Singh Solanky Date: Mon, 6 Feb 2023 23:11:51 -0300 Subject: [PATCH] Make Khoj require python version below 3.11 until PyTorch works with it Closes #128 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index a130ebfd..fb205435 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ setup( url='https://github.com/debanjum/khoj', license="GPLv3", keywords="search semantic-search productivity NLP org-mode markdown beancount images", - python_requires=">=3.8, <4", + python_requires=">=3.8, <3.11", packages=find_packages( where=".", exclude=["tests*"],