Skip to content

Commit f2b0270

Browse files
fix(deps): pin dependencies
1 parent c6f4613 commit f2b0270

File tree

5 files changed

+54
-71
lines changed

5 files changed

+54
-71
lines changed

.github/workflows/build_release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ jobs:
2020
contents: write
2121
runs-on: ubuntu-latest
2222
steps:
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
2424
- name: Install uv and set the python version
25-
uses: astral-sh/setup-uv@v5
25+
uses: astral-sh/setup-uv@d4b2f3b6ecc6e67c4457f6d3e41ec42d3d0fcb86 # v5
2626
with:
2727
enable-cache: true
2828
cache-dependency-glob: "uv.lock"

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414
runs-on: ${{ matrix.os }}
1515

1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
1818
- name: Install uv and set the python version
19-
uses: astral-sh/setup-uv@v5
19+
uses: astral-sh/setup-uv@d4b2f3b6ecc6e67c4457f6d3e41ec42d3d0fcb86 # v5
2020
with:
2121
enable-cache: true
2222
cache-dependency-glob: "uv.lock"

.python-version

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

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "filterpath"
33
dynamic = ["version"]
44
description = "Recursively gets and filters dict/list-like objects with a path-like syntax"
55
readme = "README.md"
6-
requires-python = ">=3.11"
6+
requires-python = "==3.14.3"
77
license = {file = "LICENSE"}
88
authors = [
99
{name = "Gordon Code", email = "will@gordoncode.dev"}
@@ -22,7 +22,7 @@ classifiers = [
2222
"Typing :: Typed"
2323
]
2424
dependencies = [
25-
"loguru>=0.7.3",
25+
"loguru==0.7.3",
2626
]
2727

2828
[project.urls]
@@ -37,9 +37,9 @@ source = "scm"
3737

3838
[dependency-groups]
3939
dev = [
40-
"mypy>=1.15.0",
41-
"pytest>=8.3.4",
42-
"ruff>=0.9.4",
40+
"mypy==1.15.0",
41+
"pytest==8.3.4",
42+
"ruff==0.9.4",
4343
]
4444

4545
[tool.ruff]

0 commit comments

Comments
 (0)