Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ to use whatever template makes sense.

#### Problem description

Explain why the current behavior is a problem, what the expected output/behaviour
Explain why the current behavior is a problem, what the expected output/behaviour
is, and why the expected output/behaviour is a better solution.

#### Version and installation information
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/ci-osx.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,3 @@ jobs:
run: |
conda activate env
pytest -v --pyargs numcodecs

1 change: 0 additions & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,3 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

3 changes: 3 additions & 0 deletions docs/release.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ Maintenance
* Fix spelling.
By :user:`Dimitri Papadopoulos Orfanos <DimitriPapadopoulos>`, :issue:`336`.

* Remove trailing spaces and empty lines.
By :user:`Dimitri Papadopoulos Orfanos <DimitriPapadopoulos>`, :issue:`341`.

.. _release_0.10.0:

0.10.0
Expand Down
1 change: 0 additions & 1 deletion numcodecs/_shuffle.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,3 @@ cpdef void _doUnshuffle(const unsigned char[::1] src, unsigned char[::1] des, Py
for byte_index in range(count):
j = byte_index*element_size + i
des[j] = src[offset+byte_index]

4 changes: 2 additions & 2 deletions numcodecs/blosc.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ def decompress_partial(source, start, nitems, dest=None):
cdef:
int ret
int encoding_size
int nitems_bytes
int nitems_bytes
int start_bytes
char *source_ptr
char *dest_ptr
Expand Down Expand Up @@ -463,7 +463,7 @@ def decompress_partial(source, start, nitems, dest=None):
if dest_buffer is not None:
dest_buffer.release()

# ret refers to the number of bytes returned from blosc_getitem.
# ret refers to the number of bytes returned from blosc_getitem.
if ret <= 0:
raise RuntimeError('error during blosc partial decompression: %d', ret)

Expand Down
2 changes: 1 addition & 1 deletion numcodecs/zstd.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ class Zstd(Codec):
codec_id = 'zstd'

# Note: unlike the LZ4 and Blosc codecs, there does not appear to be a (currently)
# practical limit on the size of buffers that Zstd can process and so we don't
# practical limit on the size of buffers that Zstd can process and so we don't
# enforce a max_buffer_size option here.

def __init__(self, level=DEFAULT_CLEVEL):
Expand Down
1 change: 0 additions & 1 deletion pytest.ini
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
[pytest]
doctest_optionflags = NORMALIZE_WHITESPACE ELLIPSIS IGNORE_EXCEPTION_DETAIL