diff --git a/opteryx/__version__.py b/opteryx/__version__.py index 7df3f718e..906b9ce08 100644 --- a/opteryx/__version__.py +++ b/opteryx/__version__.py @@ -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. diff --git a/setup.py b/setup.py index 736113b1a..a43d44a1f 100644 --- a/setup.py +++ b/setup.py @@ -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 = { diff --git a/tests/requirements.txt b/tests/requirements.txt index be9cb673c..ce220c2aa 100644 --- a/tests/requirements.txt +++ b/tests/requirements.txt @@ -35,4 +35,6 @@ sqlalchemy-bigquery pyodbc cassandra-driver -setuptools_rust \ No newline at end of file +setuptools_rust + +aiohttp \ No newline at end of file