Skip to content

Commit

Permalink
Fix float16 being a floating type. (#1290)
Browse files Browse the repository at this point in the history
  • Loading branch information
J08nY authored Oct 16, 2023
1 parent 615bf96 commit c9f9283
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datashader/datashape/typesets.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def __getitem__(self, key):
unsigned = TypeSet(uint8, uint16, uint32, uint64, name='unsigned')
integral = TypeSet(*[x for t in zip(signed, unsigned) for x in t],
name='integral')
floating = TypeSet(float32, float64, name='floating')
floating = TypeSet(float16, float32, float64, name='floating')
complexes = TypeSet(complex64, complex128, name='complexes')
boolean = TypeSet(bool_, name='boolean')

Expand Down

0 comments on commit c9f9283

Please sign in to comment.