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

fix: updates to restore build #635

Merged
merged 2 commits into from
Apr 4, 2023
Merged
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -184,3 +184,4 @@ tutorials/*.py
eva.txt
prof/
output.txt
MagicMock/
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def read(path, encoding="utf-8"):
minimal_requirement = [
"numpy>=1.19.5,<=1.23.5",
"opencv-python>=4.5.4.60,<4.6.0.66", # bug in easyocr
"pandas>=1.1.5",
"pandas>=1.1.5,<2.0.0", # major changes in 2.0.0
"Pillow>=8.4.0",
"sqlalchemy>=1.4.0,<2.0.0", # major changes in 2.0.0
"sqlalchemy-utils>=0.36.6",
Expand Down
2 changes: 2 additions & 0 deletions test/integration_tests/test_reuse.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
import os
import unittest
from pathlib import Path
from test.markers import windows_skip_marker
from test.util import get_logical_query_plan, load_udfs_for_testing

from eva.catalog.catalog_manager import CatalogManager
Expand Down Expand Up @@ -115,6 +116,7 @@ def test_reuse_does_not_work_when_expression_in_where_clause(self):

self.assertFalse(yolo_expr.has_cache())

@windows_skip_marker
def test_reuse_after_server_shutdown(self):
select_query = """SELECT id, label FROM DETRAC JOIN
LATERAL YoloV5(data) AS Obj(label, bbox, conf) WHERE id < 10;"""
Expand Down