From c598ec5ce39bc136c338903bc65a471d01517200 Mon Sep 17 00:00:00 2001 From: David Hugh-Jones Date: Fri, 1 Dec 2023 18:42:33 +0000 Subject: [PATCH 1/2] Fix #3 requirements.txt This updates requirements.txt so that numpy and other packages install OK on a machine with a recent Cython. Obviously, no guarantee it doesn't break something else. --- requirements.txt | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/requirements.txt b/requirements.txt index 8cc8985..a277fcd 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,20 +3,20 @@ coverage==5.2.1 importlib-metadata==1.7.0 iniconfig==1.0.1 more-itertools==8.5.0 -numpy==1.19.1 -packaging==20.4 -pandas==1.1.1 -patsy==0.5.1 +numpy==1.26.2 +packaging==21.3 +pandas==2.1.2 +patsy==0.5.2 pluggy==0.13.1 py==1.9.0 pyparsing==2.4.7 pytest==6.0.1 pytest-cov==2.10.1 -python-dateutil==2.8.1 +python-dateutil==2.8.2 pytz==2020.1 -scipy==1.5.2 +# scipy==1.5.2 six==1.15.0 -statsmodels==0.12.0 +statsmodels==0.14.0 toml==0.10.1 wget==3.2 zipp==3.1.0 From ea6463e28938a057d14bb35d21133479cdcd2dc1 Mon Sep 17 00:00:00 2001 From: David Hugh-Jones Date: Fri, 1 Dec 2023 18:49:49 +0000 Subject: [PATCH 2/2] Update patsy version to avoid bug With 0.5.2, patsy gave an error. 0.5.4 seems to be ok. (NB I have no idea what I am doing, this is pure cargo cult...) --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index a277fcd..253b078 100644 --- a/requirements.txt +++ b/requirements.txt @@ -6,7 +6,7 @@ more-itertools==8.5.0 numpy==1.26.2 packaging==21.3 pandas==2.1.2 -patsy==0.5.2 +patsy==0.5.4 pluggy==0.13.1 py==1.9.0 pyparsing==2.4.7