Skip to content

Commit

Permalink
Merge pull request #363 from genicam/version-1.4
Browse files Browse the repository at this point in the history
Version 1.4
  • Loading branch information
kazunarikudo authored Jul 15, 2022
2 parents 3ced749 + 5487885 commit 9df17ca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
download_url='https://pypi.org/project/harvesters/',
# A list of required Python modules:
install_requires=[
'genicam<1.2',
'genicam>=1.2',
'numpy'
],
#
Expand Down
2 changes: 1 addition & 1 deletion src/harvesters/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -2199,7 +2199,7 @@ def _update_chunk_data(self, buffer: _Buffer):
self._chunk_adapter.update_buffer(buffer.raw_buffer)
action = 'updated'
else:
self._chunk_adapter.attach_buffer(buffer.raw_buffer[:size])
self._chunk_adapter.attach_buffer(buffer.raw_buffer, size)
self._has_attached_chunk = True
action = 'attached'

Expand Down

0 comments on commit 9df17ca

Please sign in to comment.