Lenty/SLiCAP_python

Scipy dependency issue with Python 3.9 on OS X

Closed this issue · 2 comments

I am trying to install SLiCAP in Python 3.9, but some of specified versions of the packages don't have wheels for it. Since I couldn't find it in the installation instructions: what version of python is recommended? For now I'll try using some more recent versions of the dependencies.

Maybe Requirements.txt could be relaxed so other Python versions also work, otherwise it would be helpful to put the recommended version in the installation instructions.

Just found python_requires='>=3.7' in setup.py, in which case this is a dependency issue with Python 3.9 on OS X. Suggested fix is to change line 4 of Requirements.txt from scipy==1.4.1 to scipy>=1.4.1.

Lenty commented

I just had a look and made some of the requirements a bit more flexible. I also added python 3.9 to the travis.yml such that these dependencies will be tested in the future!

Eventually the requirements in requirements.txt are based on the versions I had on my system, therefore they can be made more flexible!