Closed AdamOrmondroyd closed 8 months ago
All modified and coverable lines are covered by tests :white_check_mark:
Project coverage is 100.00%. Comparing base (
e5b3bdf
) to head (33a473f
).
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
will do once #356 is through
Will be a nice opportunity to test that bump_version actually works on osx after #356 is merged
I could test OS X compat
If you like, but I'm also on Mac hence #356 in the first place
If you like, but I'm also on Mac hence #356 in the first place
Will was too fast 😢 was confused why my branch had diverged in seconds
Ah, apologies for stealing your fun! The bump version isn't much use in a merge resolution anyway. We'll have to wait until a new PR before trying #356 out on macOS
dw I'll try it out on #359
Description
A quick one: I'm a fan of
pathlib.Path
, which takes care of/
vs\
on unix/dos derived OSs, however, it cannot be used as theread_chains
root
argument since+
is not defined for aPath
, so I just cast it to string.This PR puts the cast into
read_chains
. I have left all the other reading functions unmodified since they aren't intended to be invoked directly.Fixes #357
Checklist:
flake8 anesthetic tests
)pydocstyle --convention=numpy anesthetic
)python -m pytest
)