Skip to content

Commit

Permalink
👷 ci: add Python 3.13 to ci (#267)
Browse files Browse the repository at this point in the history
  • Loading branch information
SigureMo committed May 18, 2024
1 parent 6cef48f commit a282d83
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 26 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/e2e-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13-dev"]
architecture: ["x64"]
name: Python ${{ matrix.python-version }} on ${{ matrix.architecture }} e2e test
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/latest-release-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13-dev"]
architecture: ["x64"]
name: Python ${{ matrix.python-version }} on ${{ matrix.architecture }} latest release test
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13-dev"]
architecture: ["x64"]
name: Python ${{ matrix.python-version }} on ${{ matrix.architecture }} unit test
steps:
Expand Down
38 changes: 19 additions & 19 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@ python = "^3.9.0"
aiofiles = "^23.2.1"
biliass = "1.3.7"
colorama = { version = "^0.4.6", markers = "sys_platform == 'win32'" }
typing-extensions = "^4.10.0"
typing-extensions = { version = "^4.12.0rc1", allow-prereleases = true }
dict2xml = "1.7.5"
httpx = { extras = ["http2", "socks"], version = "^0.27.0" }

[tool.poetry.group.dev.dependencies]
pytest = "^8.1.1"
pyright = "^1.1.356"
pytest = "^8.2.0"
pyright = "^1.1.363"
pytest-rerunfailures = "^14.0"
ruff = "^0.4.0"
ruff = "^0.4.4"

[tool.poetry.scripts]
yutto = "yutto.__main__:main"
Expand Down

0 comments on commit a282d83

Please sign in to comment.