From 2a6eaea307074841dd06589caf49141d6fa1482a Mon Sep 17 00:00:00 2001 From: Andy Maloney Date: Fri, 24 Mar 2023 08:27:12 -0400 Subject: [PATCH] Add python version requirement to pip setup Until python_actr is updated for 3.11, pip install should prevent installation on 3.11. --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 4fd238a..880300d 100644 --- a/setup.py +++ b/setup.py @@ -4,6 +4,7 @@ setup( name='python_actr', + python_requires='>=3.0,<3.11', packages=['python_actr', 'python_actr.display', 'python_actr.actr', 'python_actr.ui'], version=python_actr.version.version, author='Carleton Cognitive Modelling Lab',