Skip to content

Commit

Permalink
[dagster-sigma][bk] Add aiohttp pin (#25907)
Browse files Browse the repository at this point in the history
## Summary

Pin `aiohttp<3.11`, which released this morning, since it is not
compatible with `aioresponses`, which we use for testing.
  • Loading branch information
benpankow authored Nov 13, 2024
1 parent f2cea02 commit 3764fea
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions python_modules/libraries/dagster-sigma/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,7 @@ def get_version() -> str:
],
packages=find_packages(exclude=["dagster_sigma_tests*"]),
install_requires=[f"dagster{pin}", "sqlglot", "aiohttp"],
extras_require={
"test": [
"aioresponses",
]
},
extras_require={"test": ["aioresponses", "aiohttp<3.11"]},
include_package_data=True,
python_requires=">=3.9,<3.13",
zip_safe=False,
Expand Down

0 comments on commit 3764fea

Please sign in to comment.