Skip to content

Commit

Permalink
支持python3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
smallevilbeast committed Oct 25, 2022
1 parent 1b85356 commit dcc39f5
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<h1 align="center">XCGUI for Python</h1>
<p align="center">
<a href="https://github.com/smallevilbeast/pyxcgui/releases"><img src="https://img.shields.io/badge/release-0.1.6-blue.svg?" alt="release"></a>
<a href="https://github.com/smallevilbeast/pyxcgui/releases"><img src="https://img.shields.io/badge/release-0.1.7-blue.svg?" alt="release"></a>
<a href="http://www.xcgui.com"><img src="https://img.shields.io/badge/XCGUI-3.3.5-blue.svg?" alt="XCGUI"></a>
<a href="https://opensource.org/licenses/MIT"><img src="https://img.shields.io/badge/License-MIT-brightgreen.svg?" alt="License"></a>
<br><br>
Expand Down
2 changes: 2 additions & 0 deletions scripts/make_win_wheels_32.bat
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,13 @@
%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
%UserProfile%\.pyenv\pyenv-win\versions\3.7.0-win32\python.exe setup.py bdist_wheel -d wheelhouse
%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
2 changes: 2 additions & 0 deletions scripts/make_win_wheels_64.bat
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,13 @@
%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
%UserProfile%\.pyenv\pyenv-win\versions\3.7.0\python.exe setup.py bdist_wheel -d wheelhouse
%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
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
2 changes: 1 addition & 1 deletion xcgui/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from xcgui._xcgui import *
from xcgui.decorators import *

__VERSION__ = '0.1.6'
__VERSION__ = '0.1.7'

0 comments on commit dcc39f5

Please sign in to comment.