From 98e9c150e9af066df3e497c1d06ec820bc413084 Mon Sep 17 00:00:00 2001 From: jsr-p Date: Fri, 11 Oct 2024 00:56:25 +0200 Subject: [PATCH] Remove numpy version pin for python 3.12 compatibility --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index d8a408b..8bb2bc9 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ packages=['drdid'], install_requires=[ 'pandas', - 'numpy<=1.24.3', + 'numpy', 'statsmodels' ], long_description=''' @@ -21,4 +21,4 @@ See the original [R package](https://github.com/pedrohcgs/DRDID/tree/master) ''' -) \ No newline at end of file +)