From 25f13d12bfd9b779ea2ff91d3cfea9d51b1fc596 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Ma=C5=9Blanka?= <piotr.maslanka@henrietta.com.pl> Date: Thu, 24 Jun 2021 22:09:02 +0200 Subject: [PATCH] 0.6.1 --- README.md | 2 +- setup.cfg | 2 +- tempsdb/iterators.pyx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 23b5999..7cadbbe 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ Then copy your resulting wheel and install it via pip on the target system. ## v0.6.1 -* _TBA_ +* fixed an issue with `Iterators` ## v0.6 diff --git a/setup.cfg b/setup.cfg index c62a64c..1ba3bf5 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,7 +1,7 @@ # coding: utf-8 [metadata] name = tempsdb -version = 0.6.1a1 +version = 0.6.1 long-description = file: README.md long-description-content-type = text/markdown; charset=UTF-8 license_files = LICENSE diff --git a/tempsdb/iterators.pyx b/tempsdb/iterators.pyx index f0a0f4d..1aff314 100644 --- a/tempsdb/iterators.pyx +++ b/tempsdb/iterators.pyx @@ -27,7 +27,7 @@ cdef class Iterator: :meth:`~tempsdb.iterators.Iterator.close`. """ - def __init__(self, TimeSeries parent, int start, int stop, list chunks): + def __init__(self, TimeSeries parent, unsigned long long start, unsigned long long stop, list chunks): self.start = start self.stop = stop self.current_chunk = None -- GitLab