Skip to content

Commit

Permalink
Clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
synesthesiam committed Jul 5, 2024
1 parent 27deb56 commit 9f28750
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@
"'-D_USE_MATH_DEFINES'",
]
libraries += ["winmm"]
elif system == 'dragonfly' or system == 'freebsd' or system == 'netbsd' or system == 'openbsd':
elif system in ("dragonfly", "freebsd", "netbsd", "openbsd"):
system_cflags += ["-DWEBRTC_BSD", "-DWEBRTC_THREAD_RR", "-DWEBRTC_POSIX"]
else:
raise ValueError(f"Unsupported system: {system}")
Expand Down Expand Up @@ -575,7 +575,5 @@ def cxx_std(self, level: int) -> None:
cmdclass={"build_ext": PatchedBuildExt},
zip_safe=False,
python_requires=">=3.7",
classifiers=[
"License :: OSI Approved :: MIT License"
],
classifiers=["License :: OSI Approved :: MIT License"],
)

0 comments on commit 9f28750

Please sign in to comment.