From 34aee52a9ea9b96bbf18212e33425db2bfef159c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Sch=C3=A4fer?= <felix@thegcat.net> Date: Thu, 5 Oct 2023 15:52:17 +0200 Subject: [PATCH] py3.12 compat --- .gitlab-ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f91455a..5777df7 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -5,6 +5,7 @@ stages: # only cache local items. variables: PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip" + AIOHTTP_NO_EXTENSIONS: 1 cache: paths: - .cache @@ -13,7 +14,7 @@ black: stage: linting image: python:3 before_script: - - pip3 install -U pip wheel pretix black + - pip3 install -U pip pretix black script: - black --check . -- GitLab