Seems like the newest release no longer supports PIL images being passed as parameter.
Instead, the predict method takes care of all of that for you. You can just pass the name of the file:
img_filename = 'bird.jpg'
is_bird,_,probs = learn.predict(image_filename)