Closed amnona closed 8 years ago
Looks like there is a failing test
oops. forgot to fix the unittest. should work now (test warn instead of raise)
ok, now passes all checks :)
Also, can we push this change to the pip install (and bump up the version :) )
I'd hold off on the pip install - it gets confusing if there are too many releases. Looks like the change is rather small - so I'd suggest waiting until a whole bunch of patches are made to shoot off another release.
And the dev version is still pip installable via
pip install git+https://github.com/biocore/deblur.git
So it won't be a problem pip installing the dev version. This can be added to the readme if necessary.
good to merge once comments are addressed
Forgot to mention.
Now we are post alpha release, it is advantageous to start squashing commits. It'll simplify the process of debugging using tools such as git bisect
.
You can do this by
git rebase -i 675f7fb
# rebase all commits except the first commit with `squash`
git push -f
Note that this is optional, but it will clean up the commit history.
Can a change log mention be added please?
Fixed (except specific warn msg text testing in unit_test) tried to squash (not sure it worked)
Since this is a BUGFIX, i think we should immediately update the pip (since the version is already out). Don't see any advantage in waiting?
@amnona, do you perceive this as impacting most users or just a small percent? If the latter, then we might want to hold off another few days to see if any other bugs pop up which we should fix immediately.
ready for merge :)
following move to scikit-bio, when encountering a 0 read file (after msa), deblur raised an error instead of continuing with a warning. fixed to write a warning and continue (so samples with 1 read will not stop the deblurring)