whchien / funda-scraper

FundaScaper scrapes data from Funda, the Dutch housing website. You can find listings from house-buying or rental market, and historical data. 🏡
GNU General Public License v3.0
104 stars 48 forks source link

addressing pandas import error, specified numpy version #49

Open zencodess opened 1 month ago

zencodess commented 1 month ago

Resolved #48

The latest version of numpy seems to be causing problems like,

Traceback (most recent call last): File "/home/sathyasravya/repos/funda-scraper/tests/test_preprocess.py", line 1, in import pandas as pd File "/home/sathyasravya/repos/funda-scraper/funda_venv/lib/python3.10/site-packages/pandas/init.py", line 22, in from pandas.compat import is_numpy_dev as _is_numpy_dev # pyright: ignore # noqa:F401 File "/home/sathyasravya/repos/funda-scraper/funda_venv/lib/python3.10/site-packages/pandas/compat/init.py", line 25, in from pandas.compat.numpy import ( File "/home/sathyasravya/repos/funda-scraper/funda_venv/lib/python3.10/site-packages/pandas/compat/numpy/init.py", line 4, in from pandas.util.version import Version File "/home/sathyasravya/repos/funda-scraper/funda_venv/lib/python3.10/site-packages/pandas/util/init.py", line 2, in from pandas.util._decorators import ( # noqa:F401 File "/home/sathyasravya/repos/funda-scraper/funda_venv/lib/python3.10/site-packages/pandas/util/_decorators.py", line 14, in from pandas._libs.properties import cache_readonly File "/home/sathyasravya/repos/funda-scraper/funda_venv/lib/python3.10/site-packages/pandas/_libs/init.py", line 13, in from pandas._libs.interval import Interval File "pandas/_libs/interval.pyx", line 1, in init pandas._libs.interval ValueError: numpy.dtype size changed, may indicate binary incompatibility. Expected 96 from C header, got 88 from PyObject

I have looked into it and found that downgrading the version is the solution