Compare commits

..

No commits in common. "de190fcdd3b81159795a7f5d8e917390663c4cf6" and "9f5df5f95c9f84ca01ccda5dc7ee38f482eff37a" have entirely different histories.

4 changed files with 10 additions and 12 deletions

View file

@ -18,7 +18,7 @@ dependencies = [
"aiohttp >= 3.9.5",
"aiohttp-swagger[performance] == 1.0.16",
"argon2-cffi == 23.1.0",
"barkshark-lib >= 0.1.6, < 0.2.0",
"barkshark-lib >= 0.1.5rc1, < 0.2.0",
"barkshark-sql >= 0.2.0rc2, < 0.3.0",
"click == 8.1.2",
"hiredis == 2.3.2",
@ -47,9 +47,9 @@ activityrelay = "relay.manage:main"
[project.optional-dependencies]
dev = [
"flake8 == 7.1.0",
"mypy == 1.11.1",
"pyinstaller == 6.10.0",
"watchdog == 4.0.2"
"mypy == 1.10.1",
"pyinstaller == 6.8.0",
"watchdog == 4.0.1"
]
[tool.setuptools]

View file

@ -15,7 +15,9 @@
%a(href="https://{{domain}}/actor") << https://{{domain}}/actor</a>
-if config.approval_required
%div.section.message
%fieldset.section.message
%legend << Require Approval
Follow requests require approval. You will need to wait for an admin to accept or deny
your request.

View file

@ -12,7 +12,7 @@ body {
color: var(--text);
background-color: #222;
margin: var(--spacing);
font-family: sans-serif;
font-family: sans serif;
}
details *:nth-child(2) {
@ -88,7 +88,6 @@ tbody tr:last-child td:last-child {
table td {
padding: 5px;
white-space: nowrap;
}
table thead td {
@ -283,11 +282,8 @@ textarea {
width: 100%;
}
.data-table td:not(:first-child) {
width: max-content;
}
.data-table .date {
width: max-content;
text-align: right;
}

View file

@ -146,7 +146,7 @@ class HttpClient:
@overload
async def get(self,
async def get(self, # type: ignore[overload-overlap]
url: str,
sign_headers: bool,
cls: None = None,