Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/compreq.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ jobs:
ssh-key: ${{ secrets.DEPLOY_PRIVATE_KEY }}
- uses: actions/setup-python@v4
with:
python-version: "3.10"
python-version: "3.11"
- run: curl -LsSf https://astral.sh/uv/install.sh | sh
- run: uv run --locked --no-editable ./compreq.sh
6 changes: 3 additions & 3 deletions .github/workflows/test_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.10", "3.11", "3.12", "3.13"]
python: ["3.11", "3.12", "3.13", "3.14"]

name: test-${{ matrix.python }}
steps:
Expand All @@ -25,7 +25,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.10", "3.11", "3.12", "3.13"]
python: ["3.11", "3.12", "3.13", "3.14"]

name: test-install-${{ matrix.python }}
steps:
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.10"
python-version: "3.11"
- run: curl -LsSf https://astral.sh/uv/install.sh | sh
- run: uv run --locked --no-editable python set_version.py "${{github.ref_name}}"
- run: uv build
Expand Down
2 changes: 1 addition & 1 deletion .python-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.10
3.11
12 changes: 6 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "dropstackframe"
requires-python = "<4,>=3.10"
requires-python = "<4,>=3.11"
version = "0.1.0"
description = "A python package for removing stack frames from stack traces."
authors = [
Expand All @@ -16,18 +16,18 @@ classifiers = [
"Intended Audience :: Developers",
"Typing :: Typed",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]

[dependency-groups]
dev = [
"compreq<0.4.1,>=0.4.0",
"mypy<1.18,>=1.17",
"pytest<8.5,>=8.4",
"ruff<0.12.10,>=0.12.9",
"mypy<1.20,>=1.19",
"pytest<9.1,>=9.0",
"ruff<0.14.11,>=0.14.10",
"taskipy<1.15,>=1.14",
"tomlkit<0.13.4,>=0.13.3",
]
Expand Down Expand Up @@ -90,7 +90,7 @@ ignore = [
]

[tool.mypy]
python_version = "3.10"
python_version = "3.11"
show_error_codes = true
# First we turn on *all the checks*, and then we turn off those that are too annoying.
strict = true
Expand Down
Loading