Skip to content

Commit

Permalink
Adjust one check from PR #1711.
Browse files Browse the repository at this point in the history
  • Loading branch information
manthey committed Nov 1, 2024
1 parent 6b70806 commit ff36e70
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
### Improvements

- Format dates in item lists ([#1707](../../pull/1707))
- Guard dtype types ([#1710](../../pull/1710))
- Guard dtype types ([#1711](../../pull/1711), [#1713](../../pull/1713))

### Changes

- Openslide now requires the binary wheel on appropriate platforms ([#1709](../../pull/1709))
- Openslide now requires the binary wheel on appropriate platforms ([#1709](../../pull/1709), [#1710](../../pull/1710))

## 1.30.2

Expand Down
2 changes: 1 addition & 1 deletion sources/multi/large_image_source_multi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -898,7 +898,7 @@ def _openSource(self, source, params=None):
params = source.get('params', {})
ts = openFunc(source['path'], **params)
if (self._dtype and np.dtype(ts.dtype).kind == 'f' and
np.dtype(self._dtype.kind) != 'f' and
np.dtype(self._dtype).kind != 'f' and
'sampleScale' not in source and 'sampleOffset' not in source):
minval = maxval = 0
for f in range(ts.frames):
Expand Down
2 changes: 1 addition & 1 deletion test.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ RUN apt-get update && \
libssl-dev \
libxml2-dev \
libxmlsec1-dev \
llvm \
# llvm \
make \
tk-dev \
wget \
Expand Down

0 comments on commit ff36e70

Please sign in to comment.