From 6d9e704c4d36c8be05a82cd33bf0a50b6b8ee9e7 Mon Sep 17 00:00:00 2001 From: Boldi Date: Mon, 2 Oct 2023 17:16:27 +0100 Subject: [PATCH] More fixes --- .github/workflows/deploy.yml | 4 ++++ pyproject.toml | 5 +++++ 2 files changed, 9 insertions(+) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index cf8ae297..89ca9ba8 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -26,3 +26,7 @@ jobs: - name: Deploy run: | python deploy.py build + - name: Publish + run: | + ls build + echo "TODO: publish build/zxlive and the related files" \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 72850244..b5cc7557 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -66,6 +66,11 @@ zxlive = "zxlive.app:main" [tool.pyright] reportWildcardImportFromLibrary = "none" +[tool.flake8] +extend-ignore = [ + "E501", +] + [tool.mypy] python_version = "3.9" warn_return_any = true