Skip to content

Commit

Permalink
Add proper condition for installing uvloop
Browse files Browse the repository at this point in the history
  • Loading branch information
banipreetr committed Aug 29, 2023
1 parent 2ffd591 commit 2ab58b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ dependencies = [
'nestd == 0.3.1',
'inquirerpy == 0.3.4',
# conditional
"uvloop>=0.17.0; sys_platform == 'darwin' and platform_machine == 'aarch_64' and platform_machine == 'x86_64' and platform_machine == 'i686'"
"uvloop>=0.17.0; sys_platform == 'darwin' and (platform_machine == 'aarch_64' or platform_machine == 'x86_64' or platform_machine == 'i686'")
]

[project.optional-dependencies]
Expand Down

0 comments on commit 2ab58b1

Please sign in to comment.