-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
62: Make wasmer silently available anywhere r=Hywan a=syrusakbary ## Problem Python wasmer installation is failing in various systems (mainly because of alpine linux). syrusakbary/snapshottest#88 syrusakbary/fastdiff#2 syrusakbary/fastdiff#3 One way to make it work very easily is by creating a generic wheel that it's always available but that fails on import (rather than on install). This PR adds that, and upgrades wasmer to `0.5.6` as well Co-authored-by: Syrus <me@syrusakbary.com>
- Loading branch information
Showing
7 changed files
with
62 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
from setuptools import setup | ||
from setuptools.dist import Distribution | ||
|
||
# with open('../README.md', 'rb') as f: | ||
# readme = f.read().decode('utf-8') | ||
|
||
setup( | ||
name='wasmer', | ||
version='0.3.0', | ||
author='The Wasmer Engineering Team', | ||
author_email='engineering@wasmer.io', | ||
license='MIT', | ||
packages=['wasmer'], | ||
description='Python extension to run WebAssembly binaries', | ||
# long_description=readme, | ||
# long_description_content_type='text/markdown', | ||
zip_safe=False, | ||
platforms='any', | ||
classifiers=[ | ||
"Programming Language :: Python", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
raise ImportError("Wasmer is not available on this system") |