Skip to content

Commit

Permalink
Fix numpy issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
VersusFacit committed Oct 26, 2024
1 parent d7e17f8 commit 7fd3c19
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/functional/adapter/test_python_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def test_incremental(self, project):


models__simple_python_model = """
import pandas
import pyspark.pandas as pandas
import torch
import spacy
Expand All @@ -68,7 +68,7 @@ def model(dbt, spark):
"ResourceClass": "SingleNode"
}
},
packages=['spacy', 'torch', 'pydantic>=1.10.8']
packages=['spacy', 'torch', 'pydantic>=1.10.3', 'numpy<2']
)
data = [[1,2]] * 10
return spark.createDataFrame(data, schema=['test', 'test2'])
Expand Down

0 comments on commit 7fd3c19

Please sign in to comment.