Skip to content

Commit

Permalink
Merge pull request #55 from arcondello/win34
Browse files Browse the repository at this point in the history
Add python3.4 to appveyor build
  • Loading branch information
arcondello authored Aug 8, 2018
2 parents 72979cd + a22d757 commit fc92fee
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
18 changes: 18 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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"
Expand Down
16 changes: 16 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__,
Expand All @@ -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}
)

0 comments on commit fc92fee

Please sign in to comment.