Skip to content
Snippets Groups Projects
Commit 9338a564 authored by Piotr Maślanka's avatar Piotr Maślanka
Browse files

0.5.2

parent f96ede47
No related branches found
No related tags found
No related merge requests found
......@@ -22,11 +22,9 @@ Start off by instantiating an object
Note that if you specify a `gzip_level` argument in
:meth:`~tempsdb.database.Database.create_series`, GZIP compression will be used.
Note that gzip-compressed series are very slow to read the first time you open them,
since an index needs to be built each time that they are seek'ed.
to start from scratch. This will be fixed in the future.
Random seeks are provided by the indexed-gzip_ library.
.. warning:: Note that gzip-compressed series are very slow to read, since every `seek` is
conducted from the beginning. indexed-gzip_ library hung too often. This will be
fixed in the future.
.. _indexed-gzip: https://pypi.org/project/indexed-gzip/
......
......@@ -41,11 +41,11 @@ ext_modules = build([Multibuild('tempsdb', find_pyx('tempsdb'), **ext_kwargs), ]
**cythonize_kwargs)
setup(name='tempsdb',
version='0.5.2a2',
version='0.5.2',
packages=find_packages(include=['tempsdb', 'tempsdb.*']),
install_requires=['satella>=2.14.24', 'ujson'],
ext_modules=ext_modules,
python_requires='!=2.7.*,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,!=3.7.*',
test_suite="tests",
zip_safe=False
zip_safe=True
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment