Closed mscheifer closed 3 years ago
Merging #112 (fe29a17) into master (eacf69d) will not change coverage. The diff coverage is
100.00%
.
@@ Coverage Diff @@
## master #112 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 6 7 +1
Lines 391 397 +6
Branches 126 126
=========================================
+ Hits 391 397 +6
Impacted Files | Coverage Δ | |
---|---|---|
nrrd/writer.py | 100.00% <100.00%> (ø) |
|
nrrd/__init__.py | 100.00% <0.00%> (ø) |
Continue to review full report at Codecov.
Legend - Click here to learn more
Δ = absolute <relative> (impact)
,ø = not affected
,? = missing data
Powered by Codecov. Last update eacf69d...fe29a17. Read the comment docs.
Using the tostring function causes warnings like this starting in numpy 1.19:
DeprecationWarning: tostring() is deprecated. Use tobytes() instead.
The simple fix is to replace them with tobytes which does the same thing.
Closes #110