From bf3a8340daf8bf46d00b378ab0b0cdd26d87d4b5 Mon Sep 17 00:00:00 2001 From: Jef Roosens Date: Tue, 18 May 2021 23:46:46 +0200 Subject: [PATCH 1/2] Updated ci python version to 3.9 --- .woodpecker.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index d6ffe9a..ccc0226 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -2,7 +2,7 @@ pipeline: # =====TESTING===== test-backend: # Alpine version doesn't have make - image: python:3.8 + image: python:3.9 pull: true group: test commands: @@ -23,7 +23,7 @@ pipeline: # =====LINTING===== lint-backend: - image: python:3.8 + image: python:3.9 group: lint commands: - make lint From 274a870a6abf1c03bab5ca6f289b5ea1ad68fd2e Mon Sep 17 00:00:00 2001 From: Jef Roosens Date: Tue, 18 May 2021 23:48:23 +0200 Subject: [PATCH 2/2] Switched to pure default Black config --- app/__main__.py | 1 - pyproject.toml | 2 -- 2 files changed, 3 deletions(-) delete mode 100644 pyproject.toml diff --git a/app/__main__.py b/app/__main__.py index f2f91da..5e7f0af 100644 --- a/app/__main__.py +++ b/app/__main__.py @@ -14,5 +14,4 @@ async def frontend(path): if __name__ == "__main__": - print(app.url_map) app.run(host="0.0.0.0") diff --git a/pyproject.toml b/pyproject.toml deleted file mode 100644 index a8f43fe..0000000 --- a/pyproject.toml +++ /dev/null @@ -1,2 +0,0 @@ -[tool.black] -line-length = 79