diff --git a/README.md b/README.md
index 3d7f449..0abc2f8 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
NtChat
-
+
diff --git a/ntchat/conf/__init__.py b/ntchat/conf/__init__.py
index 1e3ba15..01a968b 100644
--- a/ntchat/conf/__init__.py
+++ b/ntchat/conf/__init__.py
@@ -1,4 +1,4 @@
-VERSION = '0.1.16'
+VERSION = '0.1.17'
LOG_LEVEL = "DEBUG"
LOG_KEY = 'NTCHAT_LOG'
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 10a6b87..71efd59 100644
--- a/setup.py
+++ b/setup.py
@@ -194,7 +194,7 @@ extension.extra_compile_cpp_args = extra_compile_cpp_args[target_os]
setup(
name='ntchat',
- version='0.1.16',
+ version='0.1.17',
description='About Conversational RPA SDK for Chatbot Makers',
long_description="",
long_description_content_type='text/markdown',
@@ -209,7 +209,8 @@ setup(
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
- 'Programming Language :: Python :: 3.10'
+ 'Programming Language :: Python :: 3.10',
+ 'Programming Language :: Python :: 3.11'
],
package_data={"": ["py.typed", "*.pyi", "helper*.dat"]},
include_package_data=False,