Skip to content

Commit b6e2876

Browse files
committed
chore: 3.11 -> 3.12
1 parent 882c376 commit b6e2876

7 files changed

Lines changed: 9 additions & 221 deletions

File tree

.claude/skills/socketio-stub-updater/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description: >
66
Use when python-socketio releases a new version and stubs need to be synchronized, or when the user
77
mentions "update stubs", "socketio upgrade", "sync stubs with socketio", or "check socketio changes".
88
license: MIT
9-
compatibility: Requires git, uv, and Python 3.11+. Internet access needed to fetch python-socketio releases.
9+
compatibility: Requires git, uv, and Python 3.12+. Internet access needed to fetch python-socketio releases.
1010
allowed-tools: Bash(git:*) Bash(uv:*) Read Write
1111
---
1212

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
cmd: uv run pytest src/tests/ -v
3131

3232
env:
33-
PYTHON_VERSION: "3.11"
33+
PYTHON_VERSION: "3.12"
3434
UV_CACHE_DIR: /tmp/.uv-cache
3535

3636
name: ${{ matrix.task.name }}

AGENTS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ class Example:
4949
|------|------|-------|
5050
| Mypy | strict | See pyproject.toml for disabled error codes |
5151
| Pyright | strict | See pyrightconfig.json |
52-
| Ruff | ALL | Python 3.11 target |
52+
| Ruff | ALL | Python 3.12 target |
5353

5454
## Important Notes
5555

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ dependencies = [
1010
readme = "README.md"
1111
license = "MIT"
1212
license-files = ["LICENSE"]
13-
requires-python = ">= 3.11"
13+
requires-python = ">= 3.12"
1414
classifiers = [
1515
"Development Status :: 4 - Beta",
1616
"Programming Language :: Python :: 3",
17-
"Programming Language :: Python :: 3.11",
1817
"Programming Language :: Python :: 3.12",
1918
"Programming Language :: Python :: 3.13",
2019
"Programming Language :: Python :: 3.14",
20+
"Programming Language :: Python :: 3.15",
2121
"Programming Language :: Python :: Implementation :: CPython",
2222
"Typing :: Stubs Only",
2323
]
@@ -83,7 +83,7 @@ packages = ["src/socketio-stubs"]
8383
include = ["src/socketio-stubs"]
8484

8585
[tool.mypy]
86-
python_version = "3.11"
86+
python_version = "3.12"
8787
strict = true
8888
disable_error_code = "import-untyped,overload-overlap,override"
8989
disallow_subclassing_any = false

pyrightconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"src/tests"
55
],
66
"typeCheckingMode": "strict",
7-
"pythonVersion": "3.11",
7+
"pythonVersion": "3.12",
88
"pythonPlatform": "Linux",
99
"reportMissingTypeStubs": false,
1010
"reportInconsistentConstructor": false,

ruff.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
target-version = "py311"
1+
target-version = "py312"
22

33
[lint]
44
select = ["ALL"]

uv.lock

Lines changed: 1 addition & 213 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)