Skip to content

Commit

Permalink
Merge pull request #99 from shiguredo/feature/python-3.13
Browse files Browse the repository at this point in the history
Feature/python 3.13
  • Loading branch information
voluntas authored Oct 8, 2024
2 parents d6b7660 + 29ac0f8 commit fe14844
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ jobs:
- "3.10"
- "3.11"
- "3.12"
- "3.13"
include:
- platform:
name: ubuntu-24.04_armv8
Expand Down Expand Up @@ -164,6 +165,7 @@ jobs:
- "3.10"
- "3.11"
- "3.12"
- "3.13"
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/e2e-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
e2e_test_ubuntu:
strategy:
matrix:
python_version: ["3.10", "3.11", "3.12"]
python_version: ["3.10", "3.11", "3.12", "3.13"]
os: ["ubuntu-22.04", "ubuntu-24.04"]
runs-on: ${{ matrix.os}}
timeout-minutes: 15
Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:
e2e_test_macos:
strategy:
matrix:
python_version: ["3.10", "3.11", "3.12"]
python_version: ["3.10", "3.11", "3.12", "3.13"]
# macos-13 は test_macos.py が上手くテストが動かないのでスキップ
os: ["macos-14", "macos-15"]
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
e2e_test_windows:
strategy:
matrix:
python_version: ["3.10", "3.11", "3.12"]
python_version: ["3.10", "3.11", "3.12", "3.13"]
runs-on: windows-2022
timeout-minutes: 15
env:
Expand Down
2 changes: 2 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
- [ADD] サーバー証明書チェック用の CA 証明書を指定できるようにする
- `Sora.create_connection()` の引数に `ca_cert` を追加する
- @voluntas
- [ADD] Python 3.13 に対応する
- @voluntas
- [ADD] `on_ws_close` コールバックを追加する
- @tnoho
- [ADD] `on_signaling_message` コールバックを追加する
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
requires-python = ">= 3.10"

Expand Down

0 comments on commit fe14844

Please sign in to comment.