You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Lastly, there appears to be no CI/CD testing (e.g., via GitHub actions) of various python versions to show that Python >= 3.7 is actually supported.
Given that Python 3.8 is rather old and not supported by some platforms (e.g., Terra-Bio), it would be helpful to include more support for other Python versions.
The text was updated successfully, but these errors were encountered:
Seconding @nick-youngblut. Tensorflow, Numpy, Pandas seem to have all dropped Python 3.8 support, so installing it is actually becoming impossible just by following the steps listed on README.md.
conda create --name fiola python==3.8 needs to be replaced by a conda-forge channel via conda create --name fiola python=3.8 -c conda-forge
pip install -r requirements.txt with pip version 24.2 also throws ERROR: No matching distribution found for tensorflow==2.4.1.
According to https://github.com/nel-lab/FIOLA/blob/master/setup.py, the package supports Python >= 3.7, but it appears that https://github.com/nel-lab/FIOLA/blob/master/requirements.txt is set so strictly that only Python 3.8 is actually supported, and the setup instructions in the README also suggest this:
Lastly, there appears to be no CI/CD testing (e.g., via GitHub actions) of various python versions to show that Python >= 3.7 is actually supported.
Given that Python 3.8 is rather old and not supported by some platforms (e.g., Terra-Bio), it would be helpful to include more support for other Python versions.
The text was updated successfully, but these errors were encountered: