Skip to content

Commit 1b55bdb

Browse files
committed
bump python version to 3.13
1 parent 06152b9 commit 1b55bdb

File tree

9 files changed

+16
-78
lines changed

9 files changed

+16
-78
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"changeset": patch
3+
---
4+
5+
bump python version to 3.13

.github/workflows/changesets.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Set up Python
2525
uses: actions/setup-python@v5
2626
with:
27-
python-version: "3.11"
27+
python-version: "3.13"
2828

2929
- name: Install uv
3030
uses: astral-sh/setup-uv@v2

.github/workflows/check-changeset.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Set up Python
1717
uses: actions/setup-python@v5
1818
with:
19-
python-version: "3.11"
19+
python-version: "3.13"
2020

2121
- name: Install uv
2222
uses: astral-sh/setup-uv@v2

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Set up Python
2626
uses: actions/setup-python@v5
2727
with:
28-
python-version: '3.11'
28+
python-version: '3.13'
2929

3030
- name: Install uv
3131
uses: astral-sh/setup-uv@v2

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
matrix:
1515
os: [ubuntu-latest, macos-latest, windows-latest]
16-
python-version: ["3.11", "3.12"]
16+
python-version: ["3.13"]
1717
fail-fast: false
1818

1919
steps:

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ version = "0.1.0"
88
description = "Changeset management tool for Python projects"
99
readme = "README.md"
1010
keywords = [ "changeset", "versioning", "changelog", "release",]
11-
classifiers = [ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Topic :: Software Development :: Build Tools", "Topic :: Software Development :: Version Control",]
12-
requires-python = ">=3.11"
11+
classifiers = [ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.13", "Topic :: Software Development :: Build Tools", "Topic :: Software Development :: Version Control",]
12+
requires-python = ">=3.13"
1313
dependencies = [ "click>=8.0", "toml>=0.10", "gitpython>=3.0", "rich>=10.0", "coolname>=2.0", "questionary>=2.1.0", "packaging>=21.0",]
1414
[[project.authors]]
1515
name = "Roaring Knight"

ruff.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Ruff configuration for pychangeset
22

3-
# Assume Python 3.11
4-
target-version = "py311"
3+
# Assume Python 3.13
4+
target-version = "py313"
55

66
# Line length to match Black's default
77
line-length = 88

tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def cli_runner() -> CliRunner:
1515

1616

1717
@pytest.fixture
18-
def temp_repo(tmp_path: Path) -> Generator[Path, None, None]:
18+
def temp_repo(tmp_path: Path) -> Generator[Path]:
1919
"""Create a temporary git repository for testing."""
2020
import subprocess
2121

uv.lock

Lines changed: 2 additions & 69 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)