Skip to content

Commit

Permalink
fix: Update typeguard version to >=4.0.0 (#3837)
Browse files Browse the repository at this point in the history
  • Loading branch information
trhodeos committed Feb 17, 2024
1 parent ec11a7c commit dd96150
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion sdk/python/requirements/py3.10-ci-requirements.txt
Expand Up @@ -895,7 +895,7 @@ traitlets==5.14.1
# nbformat
trino==0.327.0
# via feast (setup.py)
typeguard==2.13.3
typeguard==4.1.5
# via feast (setup.py)
types-protobuf==3.19.22
# via
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/requirements/py3.10-requirements.txt
Expand Up @@ -200,7 +200,7 @@ toolz==0.12.1
# partd
tqdm==4.66.2
# via feast (setup.py)
typeguard==2.13.3
typeguard==4.1.5
# via feast (setup.py)
types-protobuf==4.24.0.20240129
# via mypy-protobuf
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/requirements/py3.8-ci-requirements.txt
Expand Up @@ -919,7 +919,7 @@ traitlets==5.14.1
# nbformat
trino==0.327.0
# via feast (setup.py)
typeguard==2.13.3
typeguard==4.1.5
# via feast (setup.py)
types-protobuf==3.19.22
# via
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/requirements/py3.8-requirements.txt
Expand Up @@ -203,7 +203,7 @@ toolz==0.12.1
# partd
tqdm==4.66.2
# via feast (setup.py)
typeguard==2.13.3
typeguard==4.1.5
# via feast (setup.py)
types-protobuf==4.24.0.20240129
# via mypy-protobuf
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/requirements/py3.9-ci-requirements.txt
Expand Up @@ -904,7 +904,7 @@ traitlets==5.14.1
# nbformat
trino==0.327.0
# via feast (setup.py)
typeguard==2.13.3
typeguard==4.1.5
# via feast (setup.py)
types-protobuf==3.19.22
# via
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/requirements/py3.9-requirements.txt
Expand Up @@ -198,7 +198,7 @@ toolz==0.12.1
# partd
tqdm==4.66.2
# via feast (setup.py)
typeguard==2.13.3
typeguard==4.1.5
# via feast (setup.py)
types-protobuf==4.24.0.20240129
# via mypy-protobuf
Expand Down
3 changes: 2 additions & 1 deletion sdk/python/tests/unit/test_feature_views.py
@@ -1,6 +1,7 @@
from datetime import timedelta

import pytest
from typeguard import TypeCheckError

from feast.aggregation import Aggregation
from feast.batch_feature_view import BatchFeatureView
Expand Down Expand Up @@ -278,7 +279,7 @@ def test_hash():


def test_field_types():
with pytest.raises(TypeError):
with pytest.raises(TypeCheckError):
Field(name="name", dtype=ValueType.INT32)


Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -70,7 +70,7 @@
"tenacity>=7,<9",
"toml>=0.10.0,<1",
"tqdm>=4,<5",
"typeguard==2.13.3",
"typeguard>=4.0.0",
"fastapi>=0.68.0",
"uvicorn[standard]>=0.14.0,<1",
"gunicorn",
Expand Down

0 comments on commit dd96150

Please sign in to comment.