Skip to content

Commit

Permalink
Python 3.8 のサポートを終了する
Browse files Browse the repository at this point in the history
  • Loading branch information
voluntas committed Jul 25, 2024
1 parent f17e073 commit c1a7e21
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .python-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.8.18
3.9.19
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,12 @@ license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">= 3.8"
requires-python = ">= 3.9"

[project.urls]
Source = "https://github.com/shiguredo/sora-python-sdk"
Expand Down
2 changes: 1 addition & 1 deletion run.py
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ def main():
"-DCMAKE_FIND_ROOT_PATH_MODE_PACKAGE=BOTH",
f"-DCMAKE_SYSROOT={sysroot}",
f"-DLIBCXX_INCLUDE_DIR={cmake_path(os.path.join(webrtc_info.libcxx_dir, 'include'))}",
f"-DPython_ROOT_DIR={cmake_path(os.path.join(sysroot, 'usr', 'include', 'python3.8'))}",
f"-DPython_ROOT_DIR={cmake_path(os.path.join(sysroot, 'usr', 'include', 'python3.9'))}",
"-DNB_SUFFIX=.cpython-38-aarch64-linux-gnu.so",
]

Expand Down

0 comments on commit c1a7e21

Please sign in to comment.