Skip to content

Commit

Permalink
fix linux platform check (PreferredAI#397)
Browse files Browse the repository at this point in the history
  • Loading branch information
tqtg authored Mar 30, 2021
1 parent 01bb731 commit dfad244
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 @@ -257,7 +257,7 @@ def extract_gcc_binaries():
),
]

if sys.platform.startswith("Linux"): # Linux supported only
if sys.platform.startswith("linux"): # Linux supported only
extensions += [
Extension(
name="cornac.models.fm.recom_fm",
Expand Down

0 comments on commit dfad244

Please sign in to comment.