Skip to content

Commit 126d77a

Browse files
author
Update requirements bot
committed
Update requirements.
1 parent b3111a6 commit 126d77a

5 files changed

Lines changed: 215 additions & 218 deletions

File tree

.github/workflows/compreq.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ jobs:
2020
ssh-key: ${{ secrets.DEPLOY_PRIVATE_KEY }}
2121
- uses: actions/setup-python@v4
2222
with:
23-
python-version: "3.10"
23+
python-version: "3.11"
2424
- run: curl -LsSf https://astral.sh/uv/install.sh | sh
2525
- run: uv run --locked --no-editable ./compreq.sh

.github/workflows/test_release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
python: ["3.10", "3.11", "3.12", "3.13"]
13+
python: ["3.11", "3.12", "3.13", "3.14"]
1414

1515
name: test-${{ matrix.python }}
1616
steps:
@@ -25,7 +25,7 @@ jobs:
2525
runs-on: ubuntu-latest
2626
strategy:
2727
matrix:
28-
python: ["3.10", "3.11", "3.12", "3.13"]
28+
python: ["3.11", "3.12", "3.13", "3.14"]
2929

3030
name: test-install-${{ matrix.python }}
3131
steps:
@@ -55,7 +55,7 @@ jobs:
5555
- uses: actions/checkout@v3
5656
- uses: actions/setup-python@v4
5757
with:
58-
python-version: "3.10"
58+
python-version: "3.11"
5959
- run: curl -LsSf https://astral.sh/uv/install.sh | sh
6060
- run: uv run --locked --no-editable python set_version.py "${{github.ref_name}}"
6161
- run: uv build

.python-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.10
1+
3.11

pyproject.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "dropstackframe"
3-
requires-python = "<4,>=3.10"
3+
requires-python = "<4,>=3.11"
44
version = "0.1.0"
55
description = "A python package for removing stack frames from stack traces."
66
authors = [
@@ -16,18 +16,18 @@ classifiers = [
1616
"Intended Audience :: Developers",
1717
"Typing :: Typed",
1818
"Programming Language :: Python :: 3",
19-
"Programming Language :: Python :: 3.10",
2019
"Programming Language :: Python :: 3.11",
2120
"Programming Language :: Python :: 3.12",
2221
"Programming Language :: Python :: 3.13",
22+
"Programming Language :: Python :: 3.14",
2323
]
2424

2525
[dependency-groups]
2626
dev = [
2727
"compreq<0.4.1,>=0.4.0",
28-
"mypy<1.18,>=1.17",
29-
"pytest<8.5,>=8.4",
30-
"ruff<0.12.10,>=0.12.9",
28+
"mypy<1.19,>=1.18",
29+
"pytest<9.1,>=9.0",
30+
"ruff<0.14.5,>=0.14.4",
3131
"taskipy<1.15,>=1.14",
3232
"tomlkit<0.13.4,>=0.13.3",
3333
]
@@ -90,7 +90,7 @@ ignore = [
9090
]
9191

9292
[tool.mypy]
93-
python_version = "3.10"
93+
python_version = "3.11"
9494
show_error_codes = true
9595
# First we turn on *all the checks*, and then we turn off those that are too annoying.
9696
strict = true

0 commit comments

Comments
 (0)