From 0dccb9b496c61b71868ce10a628c5ad8afca1ac4 Mon Sep 17 00:00:00 2001 From: cloudwithax Date: Tue, 23 May 2023 21:37:01 -0400 Subject: [PATCH] we are no longer a wrapper for discord.py :) --- pomice/__init__.py | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) diff --git a/pomice/__init__.py b/pomice/__init__.py index c67a8de..ca93e27 100644 --- a/pomice/__init__.py +++ b/pomice/__init__.py @@ -1,26 +1,14 @@ """ Pomice ~~~~~~ -The modern Lavalink wrapper designed for discord.py. +The modern Lavalink wrapper designed for Python. Copyright (c) 2023, cloudwithax Licensed under GPL-3.0 """ -import discord -if not discord.version_info.major >= 2: - - class DiscordPyOutdated(Exception): - pass - - raise DiscordPyOutdated( - "You must have discord.py (v2.0 or greater) to use this library. " - "Uninstall your current version and install discord.py 2.0 " - "using 'pip install discord.py'", - ) - -__version__ = "2.7.0" +__version__ = "3.0.0a" __title__ = "pomice" __author__ = "cloudwithax" __license__ = "GPL-3.0"