update dependencies
This commit is contained in:
parent
333a3d4a62
commit
f963e701ab
3 changed files with 581 additions and 519 deletions
|
@ -1,10 +1,10 @@
|
||||||
FROM python:3.11-alpine
|
FROM python:3.11-alpine
|
||||||
|
|
||||||
ENV POETRY_VERSION=1.2.0
|
ENV POETRY_VERSION=1.5.1
|
||||||
ENV PYTHONUNBUFFERED=1
|
ENV PYTHONUNBUFFERED=1
|
||||||
|
|
||||||
RUN apk add gcc libressl-dev libffi-dev python3-dev musl-dev
|
RUN apk add gcc libressl-dev libffi-dev python3-dev musl-dev
|
||||||
RUN pip install "poetry==$POETRY_VERSION"
|
RUN pip install "poetry~=$POETRY_VERSION"
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
COPY poetry.lock pyproject.toml /app/
|
COPY poetry.lock pyproject.toml /app/
|
||||||
|
|
||||||
|
|
1086
poetry.lock
generated
1086
poetry.lock
generated
File diff suppressed because it is too large
Load diff
|
@ -8,15 +8,15 @@ packages = [{ include = "wulkabot" }]
|
||||||
|
|
||||||
[tool.poetry.dependencies]
|
[tool.poetry.dependencies]
|
||||||
python = "^3.11"
|
python = "^3.11"
|
||||||
"discord.py" = "^2.1"
|
"discord.py" = "^2.3"
|
||||||
aiohttp = "^3.8"
|
aiohttp = "^3.8"
|
||||||
python-dotenv = "^0.21"
|
python-dotenv = "^1.0"
|
||||||
|
|
||||||
[tool.poetry.dev-dependencies]
|
[tool.poetry.dev-dependencies]
|
||||||
black = "^22.10"
|
black = "^23.3"
|
||||||
isort = "^5.10"
|
isort = "^5.12"
|
||||||
pyright = "^1.1"
|
pyright = "^1.1"
|
||||||
pytest = "^7.2"
|
pytest = "^7.3"
|
||||||
|
|
||||||
[tool.black]
|
[tool.black]
|
||||||
verbose = true
|
verbose = true
|
||||||
|
|
Loading…
Reference in a new issue