We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa7016f commit b00cbd5Copy full SHA for b00cbd5
python/setup.py
@@ -12,10 +12,7 @@
12
history = history_file.read()
13
14
requirements = [
15
- # wasmer, if we are in Linux x86_64
16
- 'wasmer>=0.3.0; python_version>="3.5" and platform_machine=="x86_64" and sys_platform=="linux"',
17
- # wasmer, if we are in macOS x86_64
18
- 'wasmer>=0.3.0; python_version>="3.5" and platform_machine=="x86_64" and sys_platform=="darwin"'
+ 'wasmer>=0.3.0; python_version>="3.5" and platform_machine=="x86_64" and (sys_platform=="linux" or sys_platform=="darwin")',
19
]
20
21
setup_requirements = ['pytest-runner', ]
0 commit comments