Some release preparation janitoring (#432)

* Use myst-parser for readme.md doc injection

* Relax version pins

* Define bug tracker and doc links for pypi

* Update pre-commit hooks
This commit is contained in:
Teemu R
2023-02-18 22:09:35 +01:00
committed by GitHub
parent 016f4dfd19
commit 02c857d472
8 changed files with 626 additions and 419 deletions

View File

@@ -44,7 +44,9 @@ def read_payloads_from_file(file):
try:
json_payload = json.loads(decrypted)
except Exception as ex: # this can happen when the response is split into multiple tcp segments
except (
Exception
) as ex: # this can happen when the response is split into multiple tcp segments
echo(f"[red]Unable to parse payload '{decrypted}', ignoring: {ex}[/red]")
continue