Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"image": "mcr.microsoft.com/devcontainers/rust:2-1-trixie",
"features": {
"ghcr.io/devcontainers/features/python:1": {
"version": "3.12",
"version": "3.10",
"installTools": false
},
"ghcr.io/va-h/devcontainers-features/uv:1": {}
Expand Down
28 changes: 4 additions & 24 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,7 @@ jobs:
target: x86_64
- runner: ubuntu-24.04
target: aarch64
python-version:
- "3.12"
- "3.13"
- "3.13t"
- "3.14"
- "3.14t"
python-version: ["3.10", "3.11", "3.12", "3.13", "3.13t", "3.14", "3.14t"]
steps:
- uses: actions/checkout@v6
with:
Expand Down Expand Up @@ -63,12 +58,7 @@ jobs:
target: x86_64
- runner: ubuntu-24.04
target: aarch64
python-version:
- "3.12"
- "3.13"
- "3.13t"
- "3.14"
- "3.14t"
python-version: ["3.10", "3.11", "3.12", "3.13", "3.13t", "3.14", "3.14t"]
steps:
- uses: actions/checkout@v6
with:
Expand Down Expand Up @@ -97,12 +87,7 @@ jobs:
platform:
- runner: windows-latest
target: x64
python-version:
- "3.12"
- "3.13"
- "3.13t"
- "3.14"
- "3.14t"
python-version: ["3.10", "3.11", "3.12", "3.13", "3.13t", "3.14", "3.14t"]
steps:
- uses: actions/checkout@v6
with:
Expand Down Expand Up @@ -131,12 +116,7 @@ jobs:
platform:
- runner: macos-15
target: aarch64
python-version:
- "3.12"
- "3.13"
- "3.13t"
- "3.14"
- "3.14t"
python-version: ["3.10", "3.11", "3.12", "3.13", "3.13t", "3.14", "3.14t"]
steps:
- uses: actions/checkout@v6
with:
Expand Down
7 changes: 4 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,16 @@ authors = [{ name = "Apricot S." }]
license = "MIT"
license-files = ["LICENSE", "THIRD-PARTY-NOTICES.md"]
readme = "README.md"
requires-python = ">=3.12"
requires-python = ">=3.10"
keywords = ["mahjong", "riichi", "shanten", "xiangting"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
Expand All @@ -44,7 +46,7 @@ test = [
"mahjong>=1.4.0",
]
docs = [
"sphinx>=9.1.0,<10",
"sphinx>=8.1.3,<10",
"sphinx-rtd-theme>=3.1.0,<4",
]
typing = [
Expand All @@ -64,7 +66,6 @@ testpaths = ["tests"]
addopts = ["--benchmark-skip"]

[tool.ruff]
target-version = "py312"
src = ["python"]
line-length = 79

Expand Down