When trying to install sdf by runnning pip install -e I get the following:
Obtaining file:///user/gennaro/ISPY/sdf_myfork
Requirement already satisfied: astropy>=v2.0.0 in /Users/gennaro/anaconda3/envs/astroconda/lib/python3.5/site-packages (from sdf==0.1) (3.0.4)
ERROR: Could not find a version that satisfies the requirement binarytree==v2.0.1 (from sdf==0.1) (from versions: 3.0.1, 4.0.0, 4.1.0, 5.0.0, 5.1.0)
ERROR: No matching distribution found for binarytree==v2.0.1 (from sdf==0.1)
I am fixing it locally by editing the setup.py file with:
install_requires = [ ....,'binarytree >= v2.0.1',... ]
My system currently has v5.0.1.
The install works, but I cannot guarantee that things won't break down downstream.
When trying to install sdf by runnning
pip install -eI get the following:Obtaining file:///user/gennaro/ISPY/sdf_myforkRequirement already satisfied: astropy>=v2.0.0 in /Users/gennaro/anaconda3/envs/astroconda/lib/python3.5/site-packages (from sdf==0.1) (3.0.4)ERROR: Could not find a version that satisfies the requirement binarytree==v2.0.1 (from sdf==0.1) (from versions: 3.0.1, 4.0.0, 4.1.0, 5.0.0, 5.1.0)ERROR: No matching distribution found for binarytree==v2.0.1 (from sdf==0.1)I am fixing it locally by editing the
setup.pyfile with:install_requires = [ ....,'binarytree >= v2.0.1',... ]My system currently has v5.0.1.
The install works, but I cannot guarantee that things won't break down downstream.