diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 6bc5216..8811e87 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -16,7 +16,7 @@ repos: - repo: https://github.com/astral-sh/ruff-pre-commit # Ruff version. - rev: v0.5.7 + rev: v0.6.0 hooks: # Run the linter. - id: ruff diff --git a/README.md b/README.md index e0813ab..efcb5eb 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,6 @@ # ChouetteBot-discord +![Python version 3.9+](https://img.shields.io/badge/Python-3.9+-blue) [![Ruff status](https://github.com/Zalk0/ChouetteBot-discord/actions/workflows/ruff.yaml/badge.svg?branch=main)](https://github.com/Zalk0/ChouetteBot-discord/actions/workflows/ruff.yaml) [![pre-commit.ci status](https://results.pre-commit.ci/badge/github/Zalk0/ChouetteBot-discord/main.svg)](https://results.pre-commit.ci/latest/github/Zalk0/ChouetteBot-discord/main) @@ -55,13 +56,18 @@ You can also run ruff manually with the commands `ruff check` and `ruff format`. [![Docker Image](https://github.com/Zalk0/ChouetteBot-discord/actions/workflows/docker-image.yaml/badge.svg?branch=main)](https://github.com/Zalk0/ChouetteBot-discord/actions/workflows/docker-image.yaml) -You can use a Docker image to deploy the bot. It's currently supporting amd64, armv6, armv7 and arm64 -architectures. We provide deployment information on the [Docker Hub repository](https://hub.docker.com/r/gylfirst/chouettebot). +You can use a Docker image to deploy the bot. +It's currently supporting amd64, armv6, armv7 and arm64 architectures. +We provide deployment information on the +[Docker Hub repository](https://hub.docker.com/r/gylfirst/chouettebot). You can build it from source with: + ```bash docker build . # or docker build --build-arg version=tag -t app:tag . ``` -(see [Docker Build CLI Options](https://docs.docker.com/reference/cli/docker/image/build/#options) to get more info) + +(see [Docker Build CLI Options](https://docs.docker.com/reference/cli/docker/image/build/#options) +to get more info) diff --git a/pyproject.toml b/pyproject.toml index ef08483..0c9f707 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,7 @@ [project] name = "ChouetteBot" -license = "MIT" +license = { text = "MIT License" } +readme = "README.md" requires-python = ">=3.9" [tool.ruff] diff --git a/requirements-dev.txt b/requirements-dev.txt index 457f0ae..d5bd7fb 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1,3 +1,3 @@ -r requirements.txt pre-commit ~= 3.8 -ruff == 0.5.7 +ruff == 0.6.0 diff --git a/requirements.txt b/requirements.txt index 23224fd..821b890 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ -aiohttp ~= 3.10.2 +aiohttp ~= 3.10.3 discord.py[speed] ~= 2.4.0 python-dotenv ~= 1.0.1 -tomlkit ~= 0.13.0 +tomlkit ~= 0.13.2 tzdata; os_name == "nt"