diff --git a/README.md b/README.md index 4883e0d..55c5ca1 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,8 @@ -> [!WARNING] -> As of December 2023, this project does not work with Python 3.12. -> Please use Python 3.11 until all dependencies are updated to support it. - # scnewsbot A bot for the r/starcitizen Discord server. ## Installation -1. Make sure you have installed [Python](https://python.org) (>=3.11), [Git](https://git-scm.org), and [Poetry](https://pypi.org/project/poetry). +1. Make sure you have installed [Python](https://python.org) (>=3.12), [Git](https://git-scm.org), and [Poetry](https://pypi.org/project/poetry). 2. Clone the repository to your hard drive. (`git clone https://github.com/mudkipdev/scnewsbot`) 3. Run `cd scnewsbot` and `poetry install` to install the required dependencies. 4. Copy the `example.config.toml` and `example.env` files to `config.toml` and `.env` respectively. diff --git a/pyproject.toml b/pyproject.toml index 2755faa..ec31bc4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "scnewsbot" -version = "1.0.2" +version = "1.0.3" description = "A bot for the r/starcitizen Discord server." authors = ["mudkipdev "] license = "MIT" @@ -10,13 +10,13 @@ packages = [ ] [tool.poetry.dependencies] -python = "^3.11" -discord-py = "^2.2.2" -jishaku = "^2.5.1" -python-dotenv = "^1.0.0" +python = "^3.12" +discord-py = "^2.3.2" +jishaku = "^2.5.2" +python-dotenv = "^1.0.1" [tool.poetry.group.dev.dependencies] -black = "^23.3.0" +black = "^24.3.0" [build-system] requires = ["poetry-core"] diff --git a/scnewsbot/bot.py b/scnewsbot/bot.py index ec7581f..9faa43b 100644 --- a/scnewsbot/bot.py +++ b/scnewsbot/bot.py @@ -3,7 +3,7 @@ import discord from utils import Config -VERSION = "1.0.2" +VERSION = "1.0.3" INTENTS = discord.Intents.default() INTENTS.message_content = True INTENTS.members = True