From ec0099255a6b4b165667a89c96e6dc8d9d6a6a6a Mon Sep 17 00:00:00 2001 From: Dave Page Date: Sun, 26 Feb 2017 09:14:22 +0000 Subject: [PATCH] Use the correct requirements file when building the PIP package, and update the supported Python versions. --- pkg/pip/setup_pip.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkg/pip/setup_pip.py b/pkg/pip/setup_pip.py index 243592778..b4e3d8735 100644 --- a/pkg/pip/setup_pip.py +++ b/pkg/pip/setup_pip.py @@ -18,7 +18,7 @@ from os import path """This script is used to help generate PIP packages""" # Get the requirements list for the current version of Python -req_file='../requirements_py' + str(sys.version_info[0]) + '.txt' +req_file='../requirements.txt' with open(req_file) as reqf: if sys.version_info[0] >= 3: @@ -56,10 +56,10 @@ setup( # Suppported Programming Languages 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', - 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.2', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6' ], keywords='pgadmin4,postgresql,postgres',