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
DeprecationWarning: This module was deprecated in version 0.18 in favor of the
model_selection module into which all the refactored classes and functions are
moved. Also note that the interface of the new CV iterators are different from that of
this module. This module will be removed in 0.20.
RasterioDeprecationWarning: 'src.affine' is deprecated. Please switch to
'src.transform'. See https://github.com/mapbox/rasterio/issues/86 for details
UserWarning: Found both 'affine' and 'transform' in rasterio.open() - choosing 'transform'
This last one also causes an UnboundLocalError in the finally block at line 232 because response_ds didn't get opened properly?
The first two didn't cause any issues. For the last one, I commented out the affine key in the profile dictionary and made transform equal to raster_info['affine'].
The text was updated successfully, but these errors were encountered:
I'm finding a few warnings in some required packages using these versions:
pyimpute/src/pyimpute/_main.py
Line 8 in 58706f4
pyimpute/src/pyimpute/_main.py
Lines 109 to 113 in 58706f4
pyimpute/src/pyimpute/_main.py
Lines 161 to 177 in 58706f4
This last one also causes an UnboundLocalError in the
finally
block at line 232 becauseresponse_ds
didn't get opened properly?The first two didn't cause any issues. For the last one, I commented out the
affine
key in the profile dictionary and madetransform
equal toraster_info['affine']
.The text was updated successfully, but these errors were encountered: