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
4 changes: 2 additions & 2 deletions .github/workflows/generate_tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.12
- name: Set up Python 3.13
uses: actions/setup-python@v3
with:
python-version: "3.12"
python-version: "3.13"
- name: Setup poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/python-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.12
- name: Set up Python 3.13
uses: actions/setup-python@v3
with:
python-version: "3.12"
python-version: "3.13"
- name: Setup poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
Expand Down
2 changes: 1 addition & 1 deletion mise.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tools]
python = "3.12"
python = "3.13"

[tasks.main]
description = "プログラムを実行する"
Expand Down
4 changes: 2 additions & 2 deletions poetry.lock

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

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "python-starter"
version = "1.2.0"
version = "1.2.1"
description = "Template for Python project"
authors = ["negi524 <egtnrumpbiizarre.info@gmail.com>"]
license = "MIT"
Expand All @@ -10,7 +10,7 @@ packages = [
]

[tool.poetry.dependencies]
python = "^3.12"
python = "^3.13"
requests = "^2.32"
PyYAML = "^6.0"
python-dotenv = "^1.0.0"
Expand Down