From df97d8e4bcb718c029d9b75a7d95c15ea7a5243e Mon Sep 17 00:00:00 2001 From: EvieePy Date: Wed, 9 Jan 2019 14:26:06 +1000 Subject: [PATCH] Update Version Info. --- README.rst | 8 ++++---- docs/wavelink.rst | 6 +++--- setup.py | 3 ++- wavelink/__init__.py | 2 +- 4 files changed, 10 insertions(+), 9 deletions(-) diff --git a/README.rst b/README.rst index 3ea461d4..0137e4cd 100644 --- a/README.rst +++ b/README.rst @@ -1,7 +1,7 @@ .. image:: logo.png?raw=true :align: center -.. image:: https://img.shields.io/badge/Python-3.7-blue.svg +.. image:: https://img.shields.io/badge/Python-3.6%20%7C%203.7-blue.svg :target: https://www.python.org .. image:: https://api.codacy.com/project/badge/Grade/d020ed97fd2a46fcb1f42bd3bc397e63 @@ -28,19 +28,19 @@ Installation --------------------------- The following commands are currently the valid ways of installing WaveLink. -**WaveLink requires Python 3.7** +**WaveLink requires Python 3.6+** **Windows** .. code:: sh - py -3.7 -m pip install Wavelink + py -3.6 -m pip install Wavelink **Linux** .. code:: sh - python3.7 -m pip install Wavelink + python3.6 -m pip install Wavelink Getting Started ---------------------------- diff --git a/docs/wavelink.rst b/docs/wavelink.rst index b16c5038..34f6235e 100644 --- a/docs/wavelink.rst +++ b/docs/wavelink.rst @@ -11,19 +11,19 @@ Installation --------------------------- The following commands are currently the valid ways of installing WaveLink. -**WaveLink requires Python 3.7** +**WaveLink requires Python 3.6+** **Windows** .. code:: sh - py -3.7 -m pip install Wavelink + py -3.6 -m pip install Wavelink **Linux** .. code:: sh - python3.7 -m pip install Wavelink + python3.6 -m pip install Wavelink Getting Started ---------------------------- diff --git a/setup.py b/setup.py index 3409d5f3..6bc211f8 100644 --- a/setup.py +++ b/setup.py @@ -40,7 +40,7 @@ requirements.append('sphinxcontrib-websupport') requirements.append('Pygments') -version = '0.1.70' +version = '0.1.80' readme = '' with open('README.rst') as f: @@ -61,6 +61,7 @@ 'Intended Audience :: Developers', 'Natural Language :: English', 'Operating System :: OS Independent', + 'Programming Language :: Python :: 3.6' 'Programming Language :: Python :: 3.7', 'Topic :: Internet', 'Topic :: Software Development :: Libraries', diff --git a/wavelink/__init__.py b/wavelink/__init__.py index f203d494..2d3b5cca 100644 --- a/wavelink/__init__.py +++ b/wavelink/__init__.py @@ -2,7 +2,7 @@ __author__ = 'EvieePy' __license__ = 'MIT' __copyright__ = 'Copyright 2019 (c) EvieePy' -__version__ = '0.1.70a' +__version__ = '0.1.80a' from .client import Client from .errors import *