make minimum python version 3.8 again

This commit is contained in:
cloudwithax 2023-02-14 20:13:46 -05:00
parent f2c0210e05
commit 3de406e684
3 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@ version: 2
build: build:
os: ubuntu-22.04 os: ubuntu-22.04
tools: tools:
python: "3.9" python: "3.8"
sphinx: sphinx:

View File

@ -11,7 +11,7 @@ Pomice is a fully asynchronous Python library designed for communicating with [L
# Install # Install
To install the library, you need the lastest version of pip and minimum Python 3.9 To install the library, you need the lastest version of pip and minimum Python 3.8
> Stable version > Stable version
``` ```

View File

@ -55,6 +55,6 @@ setuptools.setup(
'Topic :: Software Development :: Libraries', 'Topic :: Software Development :: Libraries',
"Topic :: Internet" "Topic :: Internet"
], ],
python_requires='>=3.9', python_requires='>=3.8',
keywords=['pomice', 'lavalink', "discord.py"], keywords=['pomice', 'lavalink', "discord.py"],
) )