Skip to content

Commit

Permalink
Merge pull request #681 from bnmajor/aiohttp-dep
Browse files Browse the repository at this point in the history
BUG: Fix aiohttp dep for Python 3.11
  • Loading branch information
thewtex authored Sep 28, 2023
2 parents 80cd090 + 11302fb commit c85e04a
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,13 @@ Source = "https://github.com/InsightSoftwareConsortium/itkwidgets"
all = [
"imjoy-jupyterlab-extension >=0.1.13",
"imjoy-elfinder[jupyter]",
"imjoy-jupyter-extension >=0.3.0"
"imjoy-jupyter-extension >=0.3.0",
"aiohttp>=3.8.2; python_version=='3.11'"
]
lab = [
"imjoy-jupyterlab-extension >=0.1.13",
"imjoy-elfinder[jupyter]"
"imjoy-elfinder[jupyter]",
"aiohttp>=3.8.2; python_version=='3.11'"
]
cli = [
"hypha >= 0.15.28",
Expand All @@ -78,7 +80,8 @@ cli = [

notebook = [
"imjoy-jupyter-extension >=0.3.0",
"imjoy-elfinder[jupyter]"
"imjoy-elfinder[jupyter]",
"aiohttp>=3.8.2; python_version=='3.11'"
]
test = [
"pytest >=2.7.3",
Expand Down

0 comments on commit c85e04a

Please sign in to comment.