diff --git a/README.md b/README.md index 7e79696..984a829 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@

XCGUI for Python

- release + release XCGUI License

diff --git a/scripts/make_win_wheels_32.bat b/scripts/make_win_wheels_32.bat index aa806c9..34d48d2 100644 --- a/scripts/make_win_wheels_32.bat +++ b/scripts/make_win_wheels_32.bat @@ -3,6 +3,7 @@ %UserProfile%\.pyenv\pyenv-win\versions\3.8.0-win32\python.exe -m pip install --upgrade pip setuptools wheel %UserProfile%\.pyenv\pyenv-win\versions\3.9.0-win32\python.exe -m pip install --upgrade pip setuptools wheel %UserProfile%\.pyenv\pyenv-win\versions\3.10.0-win32\python.exe -m pip install --upgrade pip setuptools wheel +%UserProfile%\.pyenv\pyenv-win\versions\3.11.0-win32\python.exe -m pip install --upgrade pip setuptools wheel call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvars32.bat" pushd .. %UserProfile%\.pyenv\pyenv-win\versions\3.6.0-win32\python.exe setup.py bdist_wheel -d wheelhouse @@ -10,4 +11,5 @@ pushd .. %UserProfile%\.pyenv\pyenv-win\versions\3.8.0-win32\python.exe setup.py bdist_wheel -d wheelhouse %UserProfile%\.pyenv\pyenv-win\versions\3.9.0-win32\python.exe setup.py bdist_wheel -d wheelhouse %UserProfile%\.pyenv\pyenv-win\versions\3.10.0-win32\python.exe setup.py bdist_wheel -d wheelhouse +%UserProfile%\.pyenv\pyenv-win\versions\3.11.0-win32\python.exe setup.py bdist_wheel -d wheelhouse popd diff --git a/scripts/make_win_wheels_64.bat b/scripts/make_win_wheels_64.bat index ee51370..5411d9c 100644 --- a/scripts/make_win_wheels_64.bat +++ b/scripts/make_win_wheels_64.bat @@ -3,6 +3,7 @@ %UserProfile%\.pyenv\pyenv-win\versions\3.8.0\python.exe -m pip install --upgrade pip setuptools wheel %UserProfile%\.pyenv\pyenv-win\versions\3.9.0\python.exe -m pip install --upgrade pip setuptools wheel %UserProfile%\.pyenv\pyenv-win\versions\3.10.0\python.exe -m pip install --upgrade pip setuptools wheel +%UserProfile%\.pyenv\pyenv-win\versions\3.11.0\python.exe -m pip install --upgrade pip setuptools wheel call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvars64.bat" pushd .. %UserProfile%\.pyenv\pyenv-win\versions\3.6.0\python.exe setup.py bdist_wheel -d wheelhouse @@ -10,4 +11,5 @@ pushd .. %UserProfile%\.pyenv\pyenv-win\versions\3.8.0\python.exe setup.py bdist_wheel -d wheelhouse %UserProfile%\.pyenv\pyenv-win\versions\3.9.0\python.exe setup.py bdist_wheel -d wheelhouse %UserProfile%\.pyenv\pyenv-win\versions\3.10.0\python.exe setup.py bdist_wheel -d wheelhouse +%UserProfile%\.pyenv\pyenv-win\versions\3.11.0\python.exe setup.py bdist_wheel -d wheelhouse popd diff --git a/setup.py b/setup.py index 0d4d0f3..c96d51c 100644 --- a/setup.py +++ b/setup.py @@ -198,7 +198,7 @@ def add_prefix(l, prefix): setup( name='xcgui', - version='0.1.6', + version='0.1.7', description='xcgui - bundled xcgui for python', long_description="", long_description_content_type='text/markdown', diff --git a/xcgui/__init__.py b/xcgui/__init__.py index 7c76069..0176e02 100644 --- a/xcgui/__init__.py +++ b/xcgui/__init__.py @@ -1,4 +1,4 @@ from xcgui._xcgui import * from xcgui.decorators import * -__VERSION__ = '0.1.6' +__VERSION__ = '0.1.7'