From 7b330507947ad3c6716d58e3744b0bea4999fee5 Mon Sep 17 00:00:00 2001 From: Alexander Condello Date: Wed, 8 Aug 2018 09:43:49 -0700 Subject: [PATCH 1/2] Add python3.4 to appveyor build --- appveyor.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/appveyor.yml b/appveyor.yml index deb2b296..51a57ee1 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -27,6 +27,16 @@ environment: PYTHON_ARCH: "64" CPPDEBUG: 1 + - PYTHON: "C:\\Python34" + PYTHON_VERSION: "3.4.x" + PYTHON_ARCH: "32" + CPPDEBUG: 1 + + - PYTHON: "C:\\Python34-x64" + PYTHON_VERSION: "3.4.x" + PYTHON_ARCH: "64" + CPPDEBUG: 1 + - PYTHON: "C:\\Python35" PYTHON_VERSION: "3.5.x" PYTHON_ARCH: "32" @@ -55,6 +65,14 @@ environment: PYTHON_VERSION: "2.7.x" PYTHON_ARCH: "64" + - PYTHON: "C:\\Python34" + PYTHON_VERSION: "3.4.x" + PYTHON_ARCH: "32" + + - PYTHON: "C:\\Python34-x64" + PYTHON_VERSION: "3.4.x" + PYTHON_ARCH: "64" + - PYTHON: "C:\\Python35" PYTHON_VERSION: "3.5.x" PYTHON_ARCH: "32" From a22d757cd3365330da60fb427b4899d02a98e93c Mon Sep 17 00:00:00 2001 From: Alexander Condello Date: Wed, 8 Aug 2018 09:45:18 -0700 Subject: [PATCH 2/2] Add metadata to setup.py --- setup.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/setup.py b/setup.py index 1c9e5229..1ad8f81d 100644 --- a/setup.py +++ b/setup.py @@ -76,6 +76,20 @@ class Extension(extension.Extension, object): os.environ["MACOSX_DEPLOYMENT_TARGET"] = platform.mac_ver()[0] +classifiers = [ + 'License :: OSI Approved :: Apache Software License', + 'Operating System :: OS Independent', + 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', + ] + +python_requires = '>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*' + setup( name="minorminer", description=__description__, @@ -86,5 +100,7 @@ class Extension(extension.Extension, object): version=__version__, license="Apache 2.0", ext_modules=extensions, + classifiers=classifiers, + python_requires=python_requires, cmdclass={'build_ext': build_ext_compiler_check} )