Skip to content

Commit

Permalink
Python 3.6 added
Browse files Browse the repository at this point in the history
  • Loading branch information
neumond committed Feb 23, 2017
1 parent b2b0054 commit 90c876e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 3 additions & 2 deletions generator/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@
# paths used at compilation stage
# must be Windows-specific

PYTHON_VERSION = '36'
# default installation path for python libs
PYTHON_DIR = PureWindowsPath('C:/Users/IEUser/AppData/Local/Programs/Python/Python35-32')
PYTHON_DIR = PureWindowsPath('C:/Users/IEUser/AppData/Local/Programs/Python/Python{}-32'.format(PYTHON_VERSION))
# your path to pybind11 here
PYBIND_DIR = PureWindowsPath(relpath(join('..', 'pybind11'), GEN_OUTPUT_DIR))
# your path to bwapi here
Expand All @@ -38,7 +39,7 @@ class VCXProjectConfig:
RELEASE_LIBS = spaths(
BWAPI_DIR.joinpath('bwapi', 'lib', 'BWAPI.lib'),
BWAPI_DIR.joinpath('bwapi', 'lib', 'BWAPIClient.lib'),
PYTHON_DIR.joinpath('libs', 'python35.lib'),
PYTHON_DIR.joinpath('libs', 'python{}.lib'.format(PYTHON_VERSION)),
)
DEBUG_LIBS = spaths(
BWAPI_DIR.joinpath('bwapi', 'lib', 'BWAPId.lib'),
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def is_register_command(a):

setup(
name='pybrood',
version='0.9.0',
version='0.9.1',
description='Broodwar API binding',
long_description=longdesc,
url='https://github.com/neumond/pybrood',
Expand All @@ -31,6 +31,7 @@ def is_register_command(a):
'Intended Audience :: Education',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Games/Entertainment',
'Operating System :: Microsoft :: Windows',
'Operating System :: Microsoft :: Windows :: Windows 7',
Expand Down

0 comments on commit 90c876e

Please sign in to comment.