Skip to content

Commit 88c8acc

Browse files
authored
Merge pull request #49 from fedi-libs/main
merge stable
2 parents ff31388 + 1445a49 commit 88c8acc

File tree

12 files changed

+691
-145
lines changed

12 files changed

+691
-145
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,4 +206,6 @@ marimo/_static/
206206
marimo/_lsp/
207207
__marimo__/
208208

209-
private_key.pem
209+
private_key*.pem
210+
211+
devel/

.pre-commit-config.yaml

Lines changed: 77 additions & 74 deletions
Original file line numberDiff line numberDiff line change
@@ -1,75 +1,78 @@
11
repos:
2-
- hooks:
3-
- additional_dependencies:
4-
- aiohttp>=3.12.15
5-
- apmodel>=0.5.0
6-
- apsig>=0.5.4
7-
- charset-normalizer>=3.4.3
8-
- coverage>=7.10.7
9-
- fastapi>=0.116.1
10-
- httpcore[http2,socks]>=1.0.9
11-
- httpx>=0.28.1
12-
- pytest>=8.4.1
13-
- redis>=5.0.4
14-
- requests>=2.32.5
15-
- types-requests>=2.32.4.20250913
16-
- uvicorn>=0.35.0
17-
args:
18-
- --fix
19-
description: Run 'ruff' for extremely fast Python linting
20-
entry: ruff check --force-exclude
21-
id: ruff
22-
language: python
23-
minimum_pre_commit_version: 2.9.2
24-
name: ruff
25-
require_serial: true
26-
types_or:
27-
- python
28-
- pyi
29-
- additional_dependencies:
30-
- aiohttp>=3.12.15
31-
- apmodel>=0.5.0
32-
- apsig>=0.5.4
33-
- charset-normalizer>=3.4.3
34-
- coverage>=7.10.7
35-
- fastapi>=0.116.1
36-
- httpcore[http2,socks]>=1.0.9
37-
- httpx>=0.28.1
38-
- pytest>=8.4.1
39-
- redis>=5.0.4
40-
- requests>=2.32.5
41-
- types-requests>=2.32.4.20250913
42-
- uvicorn>=0.35.0
43-
args: []
44-
description: Run 'ruff format' for extremely fast Python formatting
45-
entry: ruff format --force-exclude
46-
id: ruff-format
47-
language: python
48-
minimum_pre_commit_version: 2.9.2
49-
name: ruff-format
50-
require_serial: true
51-
types_or:
52-
- python
53-
- pyi
54-
repo: https://github.com/astral-sh/ruff-pre-commit
55-
rev: v0.1.6
56-
- hooks:
57-
- additional_dependencies:
58-
- aiohttp>=3.12.15
59-
- apmodel>=0.5.0
60-
- apsig>=0.5.4
61-
- charset-normalizer>=3.4.3
62-
- coverage>=7.10.7
63-
- fastapi>=0.116.1
64-
- httpcore[http2,socks]>=1.0.9
65-
- httpx>=0.28.1
66-
- pytest>=8.4.1
67-
- redis>=5.0.4
68-
- requests>=2.32.5
69-
- types-requests>=2.32.4.20250913
70-
- uvicorn>=0.35.0
71-
id: pyrefly-check
72-
name: Pyrefly (type checking)
73-
pass_filenames: false
74-
repo: https://github.com/facebook/pyrefly-pre-commit
75-
rev: 0.46.0
2+
- hooks:
3+
- additional_dependencies:
4+
- aiohttp>=3.12.15
5+
- apmodel>=0.5.1
6+
- apsig>=0.6.0
7+
- charset-normalizer>=3.4.3
8+
- coverage>=7.10.7
9+
- fastapi>=0.116.1
10+
- httpcore[http2,socks]>=1.0.9
11+
- httpx>=0.28.1
12+
- pytest-cov>=7.0.0
13+
- pytest>=8.4.1
14+
- redis>=5.0.4
15+
- requests>=2.32.5
16+
- types-requests>=2.32.4.20250913
17+
- uvicorn>=0.35.0
18+
args:
19+
- --fix
20+
description: Run 'ruff' for extremely fast Python linting
21+
entry: ruff check --force-exclude
22+
id: ruff
23+
language: python
24+
minimum_pre_commit_version: 2.9.2
25+
name: ruff
26+
require_serial: true
27+
types_or:
28+
- python
29+
- pyi
30+
- additional_dependencies:
31+
- aiohttp>=3.12.15
32+
- apmodel>=0.5.1
33+
- apsig>=0.6.0
34+
- charset-normalizer>=3.4.3
35+
- coverage>=7.10.7
36+
- fastapi>=0.116.1
37+
- httpcore[http2,socks]>=1.0.9
38+
- httpx>=0.28.1
39+
- pytest-cov>=7.0.0
40+
- pytest>=8.4.1
41+
- redis>=5.0.4
42+
- requests>=2.32.5
43+
- types-requests>=2.32.4.20250913
44+
- uvicorn>=0.35.0
45+
args: []
46+
description: Run 'ruff format' for extremely fast Python formatting
47+
entry: ruff format --force-exclude
48+
id: ruff-format
49+
language: python
50+
minimum_pre_commit_version: 2.9.2
51+
name: ruff-format
52+
require_serial: true
53+
types_or:
54+
- python
55+
- pyi
56+
repo: https://github.com/astral-sh/ruff-pre-commit
57+
rev: v0.1.6
58+
- hooks:
59+
- additional_dependencies:
60+
- aiohttp>=3.12.15
61+
- apmodel>=0.5.1
62+
- apsig>=0.6.0
63+
- charset-normalizer>=3.4.3
64+
- coverage>=7.10.7
65+
- fastapi>=0.116.1
66+
- httpcore[http2,socks]>=1.0.9
67+
- httpx>=0.28.1
68+
- pytest-cov>=7.0.0
69+
- pytest>=8.4.1
70+
- redis>=5.0.4
71+
- requests>=2.32.5
72+
- types-requests>=2.32.4.20250913
73+
- uvicorn>=0.35.0
74+
id: pyrefly-check
75+
name: Pyrefly (type checking)
76+
pass_filenames: false
77+
repo: https://github.com/facebook/pyrefly-pre-commit
78+
rev: 0.46.0

pyproject.toml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ requires-python = ">=3.11"
1010
dependencies = [
1111
"aiohttp>=3.12.15",
1212
"apmodel>=0.5.1",
13-
"apsig>=0.5.4",
13+
"apsig>=0.6.0",
1414
"charset-normalizer>=3.4.3",
1515
"httpcore[http2,socks]>=1.0.9",
1616
"httpx>=0.28.1",
@@ -35,10 +35,6 @@ server = [
3535
[tool.uv]
3636
default-groups = "all"
3737

38-
[tool.uv.sources]
39-
apmodel = { git = "https://github.com/fedi-libs/apmodel.git", branch = "develop" }
40-
apsig = { git = "https://github.com/fedi-libs/apsig.git" }
41-
4238
[build-system]
4339
requires = ["hatchling", "hatch-vcs"]
4440
build-backend = "hatchling.build"

0 commit comments

Comments
 (0)