From 79ed55b29fcd1a2cec91cf12887c3410983fe07d Mon Sep 17 00:00:00 2001 From: kkaris Date: Mon, 1 Jul 2024 10:58:01 -0700 Subject: [PATCH] Try not restricting cython and pyjnius for python 3.10 install --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 211af33177..785a479e6b 100644 --- a/setup.py +++ b/setup.py @@ -18,8 +18,8 @@ def main(): extras_require = { # Inputs and outputs 'trips_offline': ['pykqml'], - 'reach_offline': ['cython<3', 'pyjnius==1.1.4'], - 'eidos_offline': ['cython<3', 'pyjnius==1.1.4'], + 'reach_offline': ['cython', 'pyjnius'], + 'eidos_offline': ['cython', 'pyjnius'], 'hypothesis': ['gilda>1.0.0'], 'geneways': ['stemming', 'nltk<3.6'], 'bel': ['pybel>=0.15.0,<0.16.0'],