Skip to content

v2.3.1

Compare
Choose a tag to compare
@milesgranger milesgranger released this 16 May 19:18
· 105 commits to master since this release
4042d45

Allow use without numpy (#57) 4042d45

  • Conversion of input is evaluated in order of variants declared
    in BytesType. If numpy was not installed, it would ImportError numpy
    was not installed if the input was a Buffer b/c Buffer
    was evaluated after a potential numpy input. This patch release
    fixes this behavior by moving the numpy variant as the last variant evaluated.
    Thus wiill only raise an error if it's a numpy input/output and numpy is not
    installed. For users with numpy installed, this has no effect.