Skip to content

Commit abcfcbf

Browse files
Bump uv from 0.11.7 to 0.11.15 (#189)
Co-authored-by: S. Co1 <sco1.git@gmail.com> Signed-off-by: dependabot[bot] <support@github.com>
1 parent 4d86c75 commit abcfcbf

6 files changed

Lines changed: 407 additions & 361 deletions

File tree

.github/workflows/lint_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
runs-on: ubuntu-latest
3939
strategy:
4040
matrix:
41-
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
41+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14", "3.15-dev"]
4242
fail-fast: false
4343

4444
steps:

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ ci:
44

55
repos:
66
- repo: https://github.com/psf/black-pre-commit-mirror
7-
rev: 26.3.1
7+
rev: 26.5.1
88
hooks:
99
- id: black
1010
- repo: https://github.com/pycqa/isort
11-
rev: 8.0.1
11+
rev: 9.0.0a3
1212
hooks:
1313
- id: isort
1414
name: isort
@@ -27,7 +27,7 @@ repos:
2727
- id: python-check-blanket-type-ignore
2828
exclude: "test_type_ignore.py"
2929
- repo: https://github.com/astral-sh/ruff-pre-commit
30-
rev: v0.15.11
30+
rev: v0.15.15
3131
hooks:
3232
- id: ruff-check
3333
- repo: local

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ cog.out(
3131
]]] -->
3232
```bash
3333
$ flake8 --version
34-
7.3.0 (flake8-annotations: 3.2.0, mccabe: 0.7.0, pycodestyle: 2.14.0, pyflakes: 3.4.0) CPython 3.14.3 on Darwin
34+
7.3.0 (flake8-annotations: 3.2.0, mccabe: 0.7.0, pycodestyle: 2.14.0, pyflakes: 3.4.0) CPython 3.14.4 on Windows
3535
```
3636
<!-- [[[end]]] -->
3737

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ classifiers = [
2222
"Programming Language :: Python :: 3.12",
2323
"Programming Language :: Python :: 3.13",
2424
"Programming Language :: Python :: 3.14",
25+
"Programming Language :: Python :: 3.15",
2526
"Programming Language :: Python :: 3 :: Only",
2627
"Topic :: Software Development :: Libraries :: Python Modules",
2728
"Topic :: Software Development :: Quality Assurance",
@@ -49,7 +50,7 @@ dev = [
4950
"bump2version~=1.0",
5051
"cogapp~=3.3",
5152
"isort~=8.0",
52-
"mypy~=1.11",
53+
"mypy~=2.1",
5354
"pre-commit~=4.0",
5455
"pytest~=9.0",
5556
"pytest-check~=2.4",
@@ -91,5 +92,5 @@ module-name = "flake8_annotations"
9192
module-root = ""
9293

9394
[build-system]
94-
requires = ["uv_build>=0.11.2,<0.12"]
95+
requires = ["uv_build>=0.11.17,<0.12"]
9596
build-backend = "uv_build"

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ exclude_lines =
1515
if TYPE_CHECKING:
1616

1717
[tox]
18-
envlist = clean,py{3.10,3.11,3.12,3.13,3.14},cog
18+
envlist = clean,py{3.10,3.11,3.12,3.13,3.14,3.15},cog
1919
skip_missing_interpreters = True
2020
isolated_build = True
2121
requires =

0 commit comments

Comments
 (0)