Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mudkipdev committed Apr 4, 2024
1 parent 92608de commit b150d9c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 12 deletions.
6 changes: 1 addition & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
12 changes: 6 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
license = "MIT"
Expand All @@ -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"]
Expand Down
2 changes: 1 addition & 1 deletion scnewsbot/bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b150d9c

Please sign in to comment.