Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#1613 #1616

Merged
merged 6 commits into from
Apr 28, 2024
Merged

#1613 #1616

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion opteryx/__version__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__build__ = 452
__build__ = 455

# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand Down
6 changes: 6 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,12 @@ def rust_build(setup_kwargs: Dict[str, Any]) -> None:
sources=["opteryx/compiled/structures/node.pyx"],
extra_compile_args=COMPILE_FLAGS,
),
Extension(
name="opteryx.compiled.structures.memory_pool",
sources=["opteryx/compiled/structures/memory_pool.pyx"],
language="c++",
extra_compile_args=COMPILE_FLAGS,
),
]

setup_config = {
Expand Down
4 changes: 3 additions & 1 deletion tests/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,6 @@ sqlalchemy-bigquery
pyodbc
cassandra-driver

setuptools_rust
setuptools_rust

aiohttp