we are no longer a wrapper for discord.py :)
This commit is contained in:
parent
079070b362
commit
0dccb9b496
|
|
@ -1,26 +1,14 @@
|
||||||
"""
|
"""
|
||||||
Pomice
|
Pomice
|
||||||
~~~~~~
|
~~~~~~
|
||||||
The modern Lavalink wrapper designed for discord.py.
|
The modern Lavalink wrapper designed for Python.
|
||||||
|
|
||||||
Copyright (c) 2023, cloudwithax
|
Copyright (c) 2023, cloudwithax
|
||||||
|
|
||||||
Licensed under GPL-3.0
|
Licensed under GPL-3.0
|
||||||
"""
|
"""
|
||||||
import discord
|
|
||||||
|
|
||||||
if not discord.version_info.major >= 2:
|
__version__ = "3.0.0a"
|
||||||
|
|
||||||
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"
|
|
||||||
__title__ = "pomice"
|
__title__ = "pomice"
|
||||||
__author__ = "cloudwithax"
|
__author__ = "cloudwithax"
|
||||||
__license__ = "GPL-3.0"
|
__license__ = "GPL-3.0"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue