diff --git a/setup.py b/setup.py index d8f0f31..1dd5575 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ from setuptools import setup if sys.argv[-1] == 'publish': os.system('python setup.py register') os.system('python setup.py sdist upload') - os.system('python setup.py bdist_wheel upload') + os.system('python setup.py bdist_wheel upload --universal') sys.exit() requires = ['psycopg2', 'tablib'] @@ -51,4 +51,4 @@ setup( 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: Implementation :: CPython', ) -) \ No newline at end of file +)