Skip to content

Commit

Permalink
Add python 3.5 and 3.6 windows support
Browse files Browse the repository at this point in the history
  • Loading branch information
qcapen committed Mar 6, 2018
1 parent 5b7b440 commit 259994d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 3 additions & 1 deletion appveyor.yml
@@ -1,13 +1,15 @@
environment:

global:
MPF_VERSION: 0.30
MPF_VERSION: 0.50

matrix:
- PYTHON: "C:\\Python34"
- PYTHON: "C:\\Python34-x64"
- PYTHON: "C:\\Python35"
- PYTHON: "C:\\Python35-x64"
- PYTHON: "C:\\Python36"
- PYTHON: "C:\\Python36-x64"

pypi_user:
secure: kxNKBuVMdOz6LjJPQb7PMQ==
Expand Down
5 changes: 4 additions & 1 deletion setup.py
Expand Up @@ -48,6 +48,8 @@
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Natural Language :: English',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
Expand Down Expand Up @@ -77,7 +79,8 @@
'terminaltables',
'psutil',
# asciimatic depends on pypiwin32 but newer version will not install
'pypiwin32<=219;platform_system=="Windows"'],
'pypiwin32>=223;platform_system=="Windows" and python_version>"3.4"',
'pypiwin32<=219;platform_system=="Windows" and python_version=="3.4"'],

tests_require=[],
test_suite="mpf.tests",
Expand Down

0 comments on commit 259994d

Please sign in to comment.