From f73a40811940e291918b36043cd2db2291856ca8 Mon Sep 17 00:00:00 2001 From: Jannis Leidel Date: Thu, 23 Apr 2020 13:56:51 +0200 Subject: [PATCH] Remove universal wheel bit since we're not universal now anymore. --- setup.cfg | 6 ------ setup.py | 1 + 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/setup.cfg b/setup.cfg index f3916f7..ac60e07 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,9 +1,3 @@ -[bdist_wheel] -# This flag says that the code is written to work on both Python 2 and Python -# 3. If at all possible, it is good practice to do this. If you cannot, you -# will need to generate wheels for each Python version that you support. -universal=1 - [metadata] license_file = LICENSE diff --git a/setup.py b/setup.py index 1023777..9f5436b 100644 --- a/setup.py +++ b/setup.py @@ -53,6 +53,7 @@ setup( packages=find_packages("src"), package_dir={"": "src"}, include_package_data=True, + python_requires='>=3.7, <4', install_requires=[ "dockerflow>=2018.4.0", "pgsanity",