From ca1133938a6db38da35519e4faf34c0041a3e428 Mon Sep 17 00:00:00 2001 From: jarulraj Date: Tue, 4 Apr 2023 00:01:37 -0400 Subject: [PATCH 1/2] checkpoint --- test/integration_tests/test_reuse.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/integration_tests/test_reuse.py b/test/integration_tests/test_reuse.py index a50b2b3fda..37725a110f 100644 --- a/test/integration_tests/test_reuse.py +++ b/test/integration_tests/test_reuse.py @@ -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 @@ -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;""" From b022eb52797cf5e50c67a5321dac80c647740e77 Mon Sep 17 00:00:00 2001 From: jarulraj Date: Tue, 4 Apr 2023 01:26:58 -0400 Subject: [PATCH 2/2] checkpoint --- .gitignore | 1 + setup.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index ae822b040f..a5fcc86005 100644 --- a/.gitignore +++ b/.gitignore @@ -184,3 +184,4 @@ tutorials/*.py eva.txt prof/ output.txt +MagicMock/ diff --git a/setup.py b/setup.py index 4a5b8e2c25..d1209b326f 100644 --- a/setup.py +++ b/setup.py @@ -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",