Skip to content

Commit

Permalink
hold back type issues with other packages
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Burroughs <[email protected]>
  • Loading branch information
cburroughs committed Aug 29, 2024
1 parent 0a7c836 commit d4661b3
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 11 deletions.
6 changes: 3 additions & 3 deletions sdk/python/requirements/py3.10-ci-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ multidict==6.0.5
# via
# aiohttp
# yarl
mypy==1.11.2
mypy==1.10.1
# via sqlalchemy
mypy-extensions==1.0.0
# via mypy
Expand Down Expand Up @@ -530,8 +530,8 @@ protobuf==4.25.4
# substrait
psutil==5.9.0
# via ipykernel
psycopg[binary, pool]==3.2.1
psycopg-binary==3.2.1
psycopg[binary, pool]==3.1.20
psycopg-binary==3.1.20
# via psycopg
psycopg-pool==3.2.2
# via psycopg
Expand Down
6 changes: 3 additions & 3 deletions sdk/python/requirements/py3.11-ci-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ multidict==6.0.5
# via
# aiohttp
# yarl
mypy==1.11.2
mypy==1.10.1
# via sqlalchemy
mypy-extensions==1.0.0
# via mypy
Expand Down Expand Up @@ -521,8 +521,8 @@ protobuf==4.25.4
# substrait
psutil==5.9.0
# via ipykernel
psycopg[binary, pool]==3.2.1
psycopg-binary==3.2.1
psycopg[binary, pool]==3.1.20
psycopg-binary==3.1.20
# via psycopg
psycopg-pool==3.2.2
# via psycopg
Expand Down
6 changes: 3 additions & 3 deletions sdk/python/requirements/py3.9-ci-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ multidict==6.0.5
# via
# aiohttp
# yarl
mypy==1.11.2
mypy==1.10.1
# via sqlalchemy
mypy-extensions==1.0.0
# via mypy
Expand Down Expand Up @@ -541,8 +541,8 @@ protobuf==4.25.4
# substrait
psutil==5.9.0
# via ipykernel
psycopg[binary, pool]==3.2.1
psycopg-binary==3.2.1
psycopg[binary, pool]==3.1.20
psycopg-binary==3.1.20
# via psycopg
psycopg-pool==3.2.2
# via psycopg
Expand Down
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,8 @@
TRINO_REQUIRED = ["trino>=0.305.0,<0.400.0", "regex"]

POSTGRES_REQUIRED = [
"psycopg[binary,pool]>=3.0.0,<4",
# Temporaryly held back for https://github.com/feast-dev/feast/issues/4463
"psycopg[binary,pool]>=3.0.0,<3.2",
]

OPENTELEMETRY = ["prometheus_client","psutil"]
Expand Down Expand Up @@ -167,7 +168,8 @@
"minio==7.1.0",
"mock==2.0.0",
"moto<5",
"mypy>=1.4.1",
# Temporarily held back for https://github.com/feast-dev/feast/issues/4462
"mypy>=1.4.1,<1.11",
"urllib3>=1.25.4,<3",
"psutil==5.9.0",
"py>=1.11.0", # https://github.com/pytest-dev/pytest/issues/10420
Expand Down

0 comments on commit d4661b3

Please sign in to comment.