Skip to content

Commit 4d4053d

Browse files
committed
0.0.183
1 parent 0d99de7 commit 4d4053d

File tree

11 files changed

+5
-283
lines changed

11 files changed

+5
-283
lines changed

.github/workflows/regression_suite.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
max-parallel: 4
1414
fail-fast: false
1515
matrix:
16-
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
16+
python-version: ['3.9', '3.10', '3.11', '3.12']
1717
runs-on: ubuntu-latest
1818
steps:
1919

Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,6 @@ ci:
2323
python -m mypy --ignore-missing-imports --python-version 3.10 --no-strict-optional --check-untyped-defs orso
2424

2525
compile:
26+
python -m pip install --upgrade pip uv
27+
python -m uv pip install --upgrade numpy 'cython>=3.1.0a1' setuptools
2628
python setup.py build_ext --inplace

orso/bitarray/__init__.py

Lines changed: 0 additions & 1 deletion
This file was deleted.

orso/compute/bloom_filter/__init__.py

Lines changed: 0 additions & 1 deletion
This file was deleted.

orso/compute/bloom_filter/bloom_filter.pyx

Lines changed: 0 additions & 67 deletions
This file was deleted.

orso/compute/cbitarray.pyx

Lines changed: 0 additions & 68 deletions
This file was deleted.

orso/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@
1010
# See the License for the specific language governing permissions and
1111
# limitations under the License.
1212

13-
__version__: str = "0.0.182"
13+
__version__: str = "0.0.183"
1414
__author__: str = "@joocer"

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ orjson
44
ormsgpack
55
pandas
66
pyarrow
7-
numpy==1.*
7+
numpy

setup.py

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -32,31 +32,13 @@ def is_mac(): # pragma: no cover
3232

3333
extensions = [
3434
# Cython code
35-
Extension(
36-
name="orso.compute.cbitarray",
37-
sources=["orso/compute/cbitarray.pyx"],
38-
extra_compile_args=COMPILE_FLAGS,
39-
extra_link_args=COMPILE_FLAGS,
40-
),
4135
Extension(
4236
name="orso.compute.compiled",
4337
sources=["orso/compute/compiled.pyx"],
4438
include_dirs=[numpy.get_include()],
4539
extra_compile_args=COMPILE_FLAGS,
4640
extra_link_args=COMPILE_FLAGS,
4741
),
48-
Extension(
49-
name="orso.compute.bloom_filter.bloom_filter",
50-
sources=["orso/compute/bloom_filter/bloom_filter.pyx"],
51-
extra_compile_args=COMPILE_FLAGS,
52-
),
53-
Extension(
54-
name="orso.compute.varchar_array",
55-
sources=["orso/compute/varchar_array.pyx"],
56-
include_dirs=[numpy.get_include()],
57-
language="c++",
58-
extra_compile_args=COMPILE_FLAGS + ["-std=c++11"],
59-
),
6042
]
6143

6244
setup_config = {

tests/test_bitarray.py

Lines changed: 0 additions & 74 deletions
This file was deleted.

0 commit comments

Comments
 (0)