Skip to content

Commit

Permalink
chore: update uvloop dependency to 0.17 for python 3.11 support
Browse files Browse the repository at this point in the history
  • Loading branch information
AntoineRR committed Jan 15, 2023
1 parent 73aa521 commit a3afd5f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ dependencies = [
'watchdog == 2.1.3',
'multiprocess == 0.70.12.2',
# conditional
'uvloop == 0.16.0; sys_platform == "darwin"',
'uvloop == 0.16.0; platform_machine == "x86_64"',
'uvloop == 0.16.0; platform_machine == "i686"'
'uvloop == 0.17.0; sys_platform == "darwin"',
'uvloop == 0.17.0; platform_machine == "x86_64"',
'uvloop == 0.17.0; platform_machine == "i686"'
]
classifiers = [
"Development Status :: 3 - Alpha",
Expand Down
2 changes: 1 addition & 1 deletion robyn/test-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ pytest==6.2.5
maturin==0.12.11
watchdog
requests==2.26.0
uvloop==0.16.0
uvloop==0.17.0
multiprocess==0.70.12.2
websockets==10.1
jinja2==3.0.2

0 comments on commit a3afd5f

Please sign in to comment.