roaringbitmap 0.7.2__tar.gz → 0.7.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {roaringbitmap-0.7.2/roaringbitmap.egg-info → roaringbitmap-0.7.3}/PKG-INFO +22 -6
- {roaringbitmap-0.7.2 → roaringbitmap-0.7.3}/README.rst +8 -2
- roaringbitmap-0.7.3/pyproject.toml +14 -0
- {roaringbitmap-0.7.2 → roaringbitmap-0.7.3/roaringbitmap.egg-info}/PKG-INFO +22 -6
- {roaringbitmap-0.7.2 → roaringbitmap-0.7.3}/roaringbitmap.egg-info/SOURCES.txt +1 -0
- {roaringbitmap-0.7.2 → roaringbitmap-0.7.3}/setup.py +4 -5
- {roaringbitmap-0.7.2 → roaringbitmap-0.7.3}/src/roaringbitmap.c +40849 -21622
- {roaringbitmap-0.7.2 → roaringbitmap-0.7.3}/LICENSE +0 -0
- {roaringbitmap-0.7.2 → roaringbitmap-0.7.3}/MANIFEST.in +0 -0
- {roaringbitmap-0.7.2 → roaringbitmap-0.7.3}/roaringbitmap.egg-info/dependency_links.txt +0 -0
- {roaringbitmap-0.7.2 → roaringbitmap-0.7.3}/roaringbitmap.egg-info/top_level.txt +0 -0
- {roaringbitmap-0.7.2 → roaringbitmap-0.7.3}/setup.cfg +0 -0
- {roaringbitmap-0.7.2 → roaringbitmap-0.7.3}/src/_arrayops.h +0 -0
- {roaringbitmap-0.7.2 → roaringbitmap-0.7.3}/src/bitcount.h +0 -0
- {roaringbitmap-0.7.2 → roaringbitmap-0.7.3}/src/macros.h +0 -0
|
@@ -1,20 +1,30 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: roaringbitmap
|
|
3
|
-
Version: 0.7.
|
|
3
|
+
Version: 0.7.3
|
|
4
4
|
Summary: Roaring Bitmap
|
|
5
5
|
Home-page: http://roaringbitmap.readthedocs.io
|
|
6
6
|
Author: Andreas van Cranenburgh
|
|
7
7
|
Author-email: A.W.van.Cranenburgh@rug.nl
|
|
8
|
-
License: GPL
|
|
8
|
+
License: GPL-2.0-or-later
|
|
9
9
|
Platform: Many
|
|
10
10
|
Classifier: Development Status :: 4 - Beta
|
|
11
11
|
Classifier: Intended Audience :: Science/Research
|
|
12
|
-
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
|
|
13
12
|
Classifier: Operating System :: POSIX
|
|
14
13
|
Classifier: Programming Language :: Python :: 2.7
|
|
15
14
|
Classifier: Programming Language :: Python :: 3.3
|
|
16
15
|
Classifier: Programming Language :: Cython
|
|
16
|
+
Description-Content-Type: text/x-rst
|
|
17
17
|
License-File: LICENSE
|
|
18
|
+
Dynamic: author
|
|
19
|
+
Dynamic: author-email
|
|
20
|
+
Dynamic: classifier
|
|
21
|
+
Dynamic: description
|
|
22
|
+
Dynamic: description-content-type
|
|
23
|
+
Dynamic: home-page
|
|
24
|
+
Dynamic: license
|
|
25
|
+
Dynamic: license-file
|
|
26
|
+
Dynamic: platform
|
|
27
|
+
Dynamic: summary
|
|
18
28
|
|
|
19
29
|
Roaring Bitmap in Cython
|
|
20
30
|
========================
|
|
@@ -54,7 +64,7 @@ License, requirements
|
|
|
54
64
|
The code is licensed under GNU GPL v2, or any later version at your option.
|
|
55
65
|
|
|
56
66
|
- Python 2.7+/3.3+ http://www.python.org (headers required, e.g. python-dev package)
|
|
57
|
-
- Cython 0
|
|
67
|
+
- Cython 3.0+ http://www.cython.org
|
|
58
68
|
|
|
59
69
|
Installation, usage
|
|
60
70
|
-------------------
|
|
@@ -65,7 +75,13 @@ Installation, usage
|
|
|
65
75
|
$ cd roaringbitmap
|
|
66
76
|
$ make
|
|
67
77
|
|
|
68
|
-
|
|
78
|
+
For Python 2, build with a Cython version that supports Python 2.7::
|
|
79
|
+
|
|
80
|
+
$ python2 -m pip install 'Cython>=3,<3.1'
|
|
81
|
+
$ make py2
|
|
82
|
+
|
|
83
|
+
The C sources published on PyPI are generated with the current Cython release
|
|
84
|
+
and support Python 3 only.
|
|
69
85
|
|
|
70
86
|
A ``RoaringBitmap()`` can be used as a replacement for a normal (mutable)
|
|
71
87
|
Python set containing (unsigned) 32-bit integers:
|
|
@@ -36,7 +36,7 @@ License, requirements
|
|
|
36
36
|
The code is licensed under GNU GPL v2, or any later version at your option.
|
|
37
37
|
|
|
38
38
|
- Python 2.7+/3.3+ http://www.python.org (headers required, e.g. python-dev package)
|
|
39
|
-
- Cython 0
|
|
39
|
+
- Cython 3.0+ http://www.cython.org
|
|
40
40
|
|
|
41
41
|
Installation, usage
|
|
42
42
|
-------------------
|
|
@@ -47,7 +47,13 @@ Installation, usage
|
|
|
47
47
|
$ cd roaringbitmap
|
|
48
48
|
$ make
|
|
49
49
|
|
|
50
|
-
|
|
50
|
+
For Python 2, build with a Cython version that supports Python 2.7::
|
|
51
|
+
|
|
52
|
+
$ python2 -m pip install 'Cython>=3,<3.1'
|
|
53
|
+
$ make py2
|
|
54
|
+
|
|
55
|
+
The C sources published on PyPI are generated with the current Cython release
|
|
56
|
+
and support Python 3 only.
|
|
51
57
|
|
|
52
58
|
A ``RoaringBitmap()`` can be used as a replacement for a normal (mutable)
|
|
53
59
|
Python set containing (unsigned) 32-bit integers:
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = [
|
|
3
|
+
"setuptools<45; python_version < '3'",
|
|
4
|
+
"setuptools>=61; python_version >= '3'",
|
|
5
|
+
"Cython>=3,<3.1; python_version < '3'",
|
|
6
|
+
"Cython>=3; python_version >= '3'",
|
|
7
|
+
]
|
|
8
|
+
build-backend = "setuptools.build_meta"
|
|
9
|
+
|
|
10
|
+
[dependency-groups]
|
|
11
|
+
dev = [
|
|
12
|
+
"pytest>=3.0.0",
|
|
13
|
+
"pycodestyle",
|
|
14
|
+
]
|
|
@@ -1,20 +1,30 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: roaringbitmap
|
|
3
|
-
Version: 0.7.
|
|
3
|
+
Version: 0.7.3
|
|
4
4
|
Summary: Roaring Bitmap
|
|
5
5
|
Home-page: http://roaringbitmap.readthedocs.io
|
|
6
6
|
Author: Andreas van Cranenburgh
|
|
7
7
|
Author-email: A.W.van.Cranenburgh@rug.nl
|
|
8
|
-
License: GPL
|
|
8
|
+
License: GPL-2.0-or-later
|
|
9
9
|
Platform: Many
|
|
10
10
|
Classifier: Development Status :: 4 - Beta
|
|
11
11
|
Classifier: Intended Audience :: Science/Research
|
|
12
|
-
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
|
|
13
12
|
Classifier: Operating System :: POSIX
|
|
14
13
|
Classifier: Programming Language :: Python :: 2.7
|
|
15
14
|
Classifier: Programming Language :: Python :: 3.3
|
|
16
15
|
Classifier: Programming Language :: Cython
|
|
16
|
+
Description-Content-Type: text/x-rst
|
|
17
17
|
License-File: LICENSE
|
|
18
|
+
Dynamic: author
|
|
19
|
+
Dynamic: author-email
|
|
20
|
+
Dynamic: classifier
|
|
21
|
+
Dynamic: description
|
|
22
|
+
Dynamic: description-content-type
|
|
23
|
+
Dynamic: home-page
|
|
24
|
+
Dynamic: license
|
|
25
|
+
Dynamic: license-file
|
|
26
|
+
Dynamic: platform
|
|
27
|
+
Dynamic: summary
|
|
18
28
|
|
|
19
29
|
Roaring Bitmap in Cython
|
|
20
30
|
========================
|
|
@@ -54,7 +64,7 @@ License, requirements
|
|
|
54
64
|
The code is licensed under GNU GPL v2, or any later version at your option.
|
|
55
65
|
|
|
56
66
|
- Python 2.7+/3.3+ http://www.python.org (headers required, e.g. python-dev package)
|
|
57
|
-
- Cython 0
|
|
67
|
+
- Cython 3.0+ http://www.cython.org
|
|
58
68
|
|
|
59
69
|
Installation, usage
|
|
60
70
|
-------------------
|
|
@@ -65,7 +75,13 @@ Installation, usage
|
|
|
65
75
|
$ cd roaringbitmap
|
|
66
76
|
$ make
|
|
67
77
|
|
|
68
|
-
|
|
78
|
+
For Python 2, build with a Cython version that supports Python 2.7::
|
|
79
|
+
|
|
80
|
+
$ python2 -m pip install 'Cython>=3,<3.1'
|
|
81
|
+
$ make py2
|
|
82
|
+
|
|
83
|
+
The C sources published on PyPI are generated with the current Cython release
|
|
84
|
+
and support Python 3 only.
|
|
69
85
|
|
|
70
86
|
A ``RoaringBitmap()`` can be used as a replacement for a normal (mutable)
|
|
71
87
|
Python set containing (unsigned) 32-bit integers:
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
"""Generic setup.py for Cython code."""
|
|
2
2
|
import os
|
|
3
3
|
import sys
|
|
4
|
-
from
|
|
5
|
-
from distutils.extension import Extension
|
|
4
|
+
from setuptools import Extension, setup
|
|
6
5
|
|
|
7
6
|
PY2 = sys.version_info[0] == 2
|
|
8
7
|
|
|
@@ -33,18 +32,18 @@ with open('README.rst') as inp:
|
|
|
33
32
|
README = inp.read()
|
|
34
33
|
|
|
35
34
|
METADATA = dict(name='roaringbitmap',
|
|
36
|
-
version='0.7.
|
|
35
|
+
version='0.7.3',
|
|
37
36
|
description='Roaring Bitmap',
|
|
38
37
|
long_description=README,
|
|
38
|
+
long_description_content_type='text/x-rst',
|
|
39
39
|
author='Andreas van Cranenburgh',
|
|
40
40
|
author_email='A.W.van.Cranenburgh@rug.nl',
|
|
41
41
|
url='http://roaringbitmap.readthedocs.io',
|
|
42
|
-
license='GPL',
|
|
42
|
+
license='GPL-2.0-or-later',
|
|
43
43
|
platforms=['Many'],
|
|
44
44
|
classifiers=[
|
|
45
45
|
'Development Status :: 4 - Beta',
|
|
46
46
|
'Intended Audience :: Science/Research',
|
|
47
|
-
'License :: OSI Approved :: GNU General Public License (GPL)',
|
|
48
47
|
'Operating System :: POSIX',
|
|
49
48
|
'Programming Language :: Python :: 2.7',
|
|
50
49
|
'Programming Language :: Python :: 3.3',
|