From 2cc54111062f52e175e13d656719d185050b4835 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sun, 7 Feb 2016 03:42:38 -0500 Subject: [PATCH] Update setup.py --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 +)