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 ...@@ -22,11 +22,9 @@ Start off by instantiating an object
Note that if you specify a `gzip_level` argument in Note that if you specify a `gzip_level` argument in
:meth:`~tempsdb.database.Database.create_series`, GZIP compression will be used. :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, .. warning:: Note that gzip-compressed series are very slow to read, since every `seek` is
since an index needs to be built each time that they are seek'ed. conducted from the beginning. indexed-gzip_ library hung too often. This will be
to start from scratch. This will be fixed in the future. fixed in the future.
Random seeks are provided by the indexed-gzip_ library.
.. _indexed-gzip: https://pypi.org/project/indexed-gzip/ .. _indexed-gzip: https://pypi.org/project/indexed-gzip/
......
...@@ -41,11 +41,11 @@ ext_modules = build([Multibuild('tempsdb', find_pyx('tempsdb'), **ext_kwargs), ] ...@@ -41,11 +41,11 @@ ext_modules = build([Multibuild('tempsdb', find_pyx('tempsdb'), **ext_kwargs), ]
**cythonize_kwargs) **cythonize_kwargs)
setup(name='tempsdb', setup(name='tempsdb',
version='0.5.2a2', version='0.5.2',
packages=find_packages(include=['tempsdb', 'tempsdb.*']), packages=find_packages(include=['tempsdb', 'tempsdb.*']),
install_requires=['satella>=2.14.24', 'ujson'], install_requires=['satella>=2.14.24', 'ujson'],
ext_modules=ext_modules, ext_modules=ext_modules,
python_requires='!=2.7.*,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,!=3.7.*', python_requires='!=2.7.*,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,!=3.7.*',
test_suite="tests", 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