Skip to content

Commit

Permalink
πŸ› Setup.py: Fixed uvicorn>=0.23.1 not found bug.
Browse files Browse the repository at this point in the history
- πŸš‘οΈ Fixed No matching distribution found for `uvicorn>=0.23.1` bug caused by some binaries missing on pypi index by removing latest binary patch from it.
  • Loading branch information
abhiTronix committed Jul 22, 2023
1 parent bdc24a4 commit 7d6a817
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def latest_version(package_name):
"msgpack{}".format(latest_version("msgpack")),
"msgpack_numpy{}".format(latest_version("msgpack_numpy")),
"aiortc{}".format(latest_version("aiortc")),
"uvicorn{}".format(latest_version("uvicorn")),
"uvicorn",
]
+ (["picamera"] if ("arm" in platform.uname()[4][:3]) else [])
+ (
Expand Down

0 comments on commit 7d6a817

Please sign in to comment.