Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
hold back type issues with other packages
Signed-off-by: Chris Burroughs <chris.burroughs@gmail.com>
  • Loading branch information
cburroughs committed Aug 29, 2024
commit d4661b3044f29ad5dd953f2d2da6a7c330bf9377
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