diff --git a/generator/config.py b/generator/config.py index 6a40e36..64060b6 100644 --- a/generator/config.py +++ b/generator/config.py @@ -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 @@ -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'), diff --git a/setup.py b/setup.py index bf2f336..a95f7b8 100644 --- a/setup.py +++ b/setup.py @@ -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', @@ -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',