From 14131d73ac9735ab8ce35751a38aab7722fbe1f8 Mon Sep 17 00:00:00 2001 From: Michel Roux Date: Mon, 6 Nov 2023 22:06:01 +0100 Subject: [PATCH] Update python version and fix aiohttp --- Dockerfile | 2 +- poetry.lock | 4 ++-- pyproject.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2c2257b..bfa6a78 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.11.5 as build +FROM python:3.11.6 as build WORKDIR /app COPY . . diff --git a/poetry.lock b/poetry.lock index 997d12a..04ca0ed 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1649,5 +1649,5 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p [metadata] lock-version = "2.0" -python-versions = "^3.8.1" -content-hash = "e4463ad986a3f8fafe36af53b741fe71dd1a78d65efb3e4240ac422688fca367" +python-versions = ">=3.8.1,<3.12" +content-hash = "30113574429e0ed0539ebe2850264eb819fb2a7af92310402c9eccbca33487ed" diff --git a/pyproject.toml b/pyproject.toml index db9dd28..6e49100 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,7 +12,7 @@ repository = "https://git.crystalyx.net/Xefir/Divent" divent = 'divent.bot:__main__' [tool.poetry.dependencies] -python = "^3.8.1" +python = ">=3.8.1,<3.12" disnake = "^2.9.1" ics = "0.8.0.dev0" python-dotenv = "^1.0.0"