Skip to content

Commit

Permalink
fix: Implement auto installation of uvloop on linux arm (#445)
Browse files Browse the repository at this point in the history
* fix: Implement autoinstallation of uvloop on linux arm

* fix: try removing platform specific dependencies
  • Loading branch information
sansyrox authored Mar 15, 2023
1 parent 92cf2c0 commit 69f940b
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,7 @@ dependencies = [
'multiprocess == 0.70.14',
'nestd==0.3.1',
# conditional
'uvloop == 0.17.0; sys_platform == "darwin"',
'uvloop == 0.17.0; platform_machine == "x86_64"',
'uvloop == 0.17.0; platform_machine == "i686"'
'uvloop == 0.17.0; sys_platform != "win32"',
]
classifiers = [
"Development Status :: 3 - Alpha",
Expand Down

0 comments on commit 69f940b

Please sign in to comment.