Skip to content

Commit

Permalink
v0.3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Arkueid committed Jan 28, 2025
1 parent 904d91c commit ba7fe4a
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,6 @@ assets

**.hit_part.html

Resources/v3/magic
Resources/v3/magic

screenshot.png
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
<img title="Windows Distro" src="https://github.com/Arkueid/live2d-py/actions/workflows/build-windows.yml/badge.svg">
<br>
<img title="Release Version" src="https://img.shields.io/github/v/release/Arkueid/live2d-py" alt="Docker Build Version" style="margin: 0 10px;">
<img title="Python Version" src="https://img.shields.io/badge/python-3.10+-blue" alt="Python Version" style="margin: 0 10px;">
<img title="CMake" src="https://img.shields.io/badge/CMake-3.13+-orange" alt="CMake" style="margin: 0 10px;">
<img title="Python Version" src="https://img.shields.io/badge/python-3.8+-blue" alt="Python Version" style="margin: 0 10px;">
<img title="CMake" src="https://img.shields.io/badge/CMake-3.16+-orange" alt="CMake" style="margin: 0 10px;">
<img title="C++" src="https://img.shields.io/badge/C%2B%2B-17-yellow" alt="C++17" style="margin: 0 10px;">
</p>

Expand All @@ -21,7 +21,7 @@

详细使用文档:[Wiki](https://github.com/Arkueid/live2d-py/wiki)

修改和开发的一点提示[CONTRIBUTING](./CONTRIBUTING.md)
修改和开发[CONTRIBUTING](./CONTRIBUTING.md)

## 兼容UI库

Expand Down
Binary file removed screenshot.png
Binary file not shown.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from setuptools.command.build_ext import build_ext

NAME = "live2d-py"
VERSION = "0.3.5" # TODO: edit before push
VERSION = "0.3.6" # TODO: edit before push
DESCRIPTION = "Live2D Python SDK"
LONG_DESCRIPTION = open("README.md", "r", encoding="utf-8").read()
AUTHOR = "Arkueid"
Expand Down Expand Up @@ -46,8 +46,8 @@ def get_cmake_version(self):
def run(self):
cmake_version = self.get_cmake_version()
if platform.system() == "Windows":
if cmake_version < "3.12":
sys.stderr.write("CMake >= 3.12 is required")
if cmake_version < "3.16":
sys.stderr.write("CMake >= 3.16 is required")
for ext in self.extensions:
self.build_extension(ext)

Expand Down

0 comments on commit ba7fe4a

Please sign in to comment.