diff options
author | reivilibre <oliverw@matrix.org> | 2023-03-24 16:41:10 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-24 16:41:10 +0000 |
commit | d5324ee111ea56fa466eab7e3974dc4894a64d46 (patch) | |
tree | ff7b2523083d585eea3e8f4548c96634f4fb0192 /.ci/scripts | |
parent | As an optimisation, use `TRUNCATE` on Postgres when clearing the user directo... (diff) | |
download | synapse-d5324ee111ea56fa466eab7e3974dc4894a64d46.tar.xz |
Add developer documentation for the Federation Sender and add a documentation mechanism using Sphinx. (#15265)
Co-authored-by: Patrick Cloke <clokep@users.noreply.github.com>
Diffstat (limited to '.ci/scripts')
-rwxr-xr-x | .ci/scripts/prepare_old_deps.sh | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/.ci/scripts/prepare_old_deps.sh b/.ci/scripts/prepare_old_deps.sh index 3398193ee5..e536a9db8b 100755 --- a/.ci/scripts/prepare_old_deps.sh +++ b/.ci/scripts/prepare_old_deps.sh @@ -35,9 +35,9 @@ sed -i \ # compatible (as far the package metadata declares, anyway); pip's package resolver # is more lax. # -# Rather than `poetry install --no-dev`, we drop all dev dependencies from the -# toml file. This means we don't have to ensure compatibility between old deps and -# dev tools. +# Rather than `poetry install --no-dev`, we drop all dev dependencies and the dev-docs +# group from the toml file. This means we don't have to ensure compatibility between +# old deps and dev tools. pip install toml wheel @@ -47,6 +47,7 @@ with open('pyproject.toml', 'r') as f: data = toml.loads(f.read()) del data['tool']['poetry']['dev-dependencies'] +del data['tool']['poetry']['group']['dev-docs'] with open('pyproject.toml', 'w') as f: toml.dump(data, f) |