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
it's probably better to use
sed 's/==/>=/' requirements.txt > requirements_min.txt
and use this with pip -r. This applies to both dreampy and SpectralLineReduction and the "old" defaults cause long recompiles. This should be taken up with the umass team. The base of the version should rely more on a baseline test?
The text was updated successfully, but these errors were encountered:
In one situation I used
awk -F= '{print $1}' requirements.txt > requirements_any.txt
which seems to have worked, pending confirmation of actual data values.
This also speeds creating the virtual environment, in particular scipy takes forever to compile back to the older required version.
it's probably better to use
sed 's/==/>=/' requirements.txt > requirements_min.txt
and use this with pip -r. This applies to both dreampy and SpectralLineReduction and the "old" defaults cause long recompiles. This should be taken up with the umass team. The base of the version should rely more on a baseline test?
The text was updated successfully, but these errors were encountered: