From 3de406e684ec8cefbcb22dabb6888652ab7cbd24 Mon Sep 17 00:00:00 2001 From: cloudwithax Date: Tue, 14 Feb 2023 20:13:46 -0500 Subject: [PATCH] make minimum python version 3.8 again --- .readthedocs.yaml | 2 +- README.md | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 2cf1ae6..5f6bf3f 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -3,7 +3,7 @@ version: 2 build: os: ubuntu-22.04 tools: - python: "3.9" + python: "3.8" sphinx: diff --git a/README.md b/README.md index 8b9b717..c0681d8 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Pomice is a fully asynchronous Python library designed for communicating with [L # 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 ``` diff --git a/setup.py b/setup.py index c69389f..5e843c4 100644 --- a/setup.py +++ b/setup.py @@ -55,6 +55,6 @@ setuptools.setup( 'Topic :: Software Development :: Libraries', "Topic :: Internet" ], - python_requires='>=3.9', + python_requires='>=3.8', keywords=['pomice', 'lavalink', "discord.py"], )