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/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ RUN wget --progress=dot:giga https://github.com/hadolint/hadolint/releases/lates
# ----------- Base setup complete -----------

# Install Python
ARG PYTHON_VERSION=3.13
ARG PYTHON_VERSION=3.14
RUN apt-get update \
&& apt-get install --no-install-recommends -y software-properties-common \
&& add-apt-repository -y ppa:deadsnakes/ppa \
Expand Down
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ updates:
interval: "daily"
ignore:
- dependency-name: "python"
versions: [">=3.13.0"]
versions: [">=3.14.0"]
reviewers:
- "yamap55"
2 changes: 1 addition & 1 deletion .github/instructions/main.instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ applyTo: "**"

## Code Quality Requirements

- Use Python 3.13.
- Use Python 3.14.
- Use Ruff for linting your code.
- Use Ruff for formatting your code.
- Use double quotes for strings.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/code-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
enable-cache: true
cache-dependency-glob: "uv.lock"
- name: Set up Python
run: uv python install 3.13
run: uv python install 3.14
- name: Install dependencies
run: |
uv sync
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
enable-cache: true
cache-dependency-glob: "uv.lock"
- name: Set up Python
run: uv python install 3.13
run: uv python install 3.14
- name: Install dependencies
run: |
uv sync
Expand Down
2 changes: 1 addition & 1 deletion .python-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.13
3.14
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ GitHub のリポジトリページの「Use this template」を押下して使

## 環境詳細

- Python : 3.13
- Python : 3.14

### 事前準備

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ authors = [
license = { file = "LICENSE" }
readme = "README.md"

requires-python = ">=3.13"
requires-python = ">=3.14"
dependencies = []

[dependency-groups]
Expand Down Expand Up @@ -71,6 +71,6 @@ reportUnusedClass = true
reportUnusedFunction = true
reportUnusedVariable = true
reportDuplicateImport = true
pythonVersion = "3.13"
pythonVersion = "3.14"
pythonPlatform = "Linux"
ignore = ["./work"]
404 changes: 214 additions & 190 deletions uv.lock

Large diffs are not rendered by default.