Skip to content

Commit 41298bd

Browse files
authored
Merge pull request #848 from seapagan/security/update-deps
Update dependencies and build metadata
2 parents bdb28c9 + b2abcbf commit 41298bd

7 files changed

Lines changed: 805 additions & 753 deletions

File tree

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,10 +220,11 @@ logs/
220220
*.log.*
221221

222222
# AI Agent stuff
223+
AGENTS.md
223224
CLAUDE.md
224225
.clinerules
225226
.cursorrules
226227
.windsurfrules
227228
NOTES.md
228-
AGENTS.md
229229
.claude/
230+
.codex/

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ repos:
1111
- id: check-added-large-files
1212

1313
- repo: https://github.com/astral-sh/ruff-pre-commit
14-
rev: v0.15.10
14+
rev: v0.15.13
1515
hooks:
1616
- id: ruff
1717
args: ["--output-format=concise"]
@@ -20,7 +20,7 @@ repos:
2020
name: "format with ruff"
2121

2222
- repo: https://github.com/pre-commit/mirrors-mypy
23-
rev: v1.20.0 # Use the sha / tag you want to point at
23+
rev: v2.1.0 # Use the sha / tag you want to point at
2424
hooks:
2525
- id: mypy
2626
name: "run mypy"
@@ -31,7 +31,7 @@ repos:
3131

3232
- repo: https://github.com/astral-sh/uv-pre-commit
3333
# uv version.
34-
rev: 0.11.6
34+
rev: 0.11.14
3535
hooks:
3636
# Update the uv lockfile
3737
- id: uv-lock

CODE_REVIEW.md

Lines changed: 0 additions & 306 deletions
This file was deleted.

pyproject.toml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ version = "0.8.0"
44
description = "Run 'api-admin custom metadata' to change this information."
55
authors = [{ name = "Grant Ramsay", email = "seapagan@gmail.com" }]
66
license = "MIT"
7+
license-files = ["LICENSE.txt"]
78
readme = "README.md"
89
requires-python = ">=3.10"
910
classifiers = ["Private :: Do Not Upload"]
@@ -41,14 +42,12 @@ dependencies = [
4142
api-admin = "app.api_admin:app"
4243

4344
[build-system]
44-
requires = ["hatchling"]
45-
build-backend = "hatchling.build"
45+
requires = ["uv_build>=0.11.14,<0.12.0"]
46+
build-backend = "uv_build"
4647

47-
[tool.hatch.build.targets.sdist]
48-
packages = ["app"]
49-
50-
[tool.hatch.build.targets.wheel]
51-
packages = ["app"]
48+
[tool.uv.build-backend]
49+
module-root = ""
50+
module-name = "app"
5251

5352
[dependency-groups]
5453
dev = [

0 commit comments

Comments
 (0)