Skip to content

Commit

Permalink
Update Version Info.
Browse files Browse the repository at this point in the history
  • Loading branch information
EvieePy committed Jan 9, 2019
1 parent 4a6daca commit df97d8e
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
8 changes: 4 additions & 4 deletions README.rst
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
----------------------------
Expand Down
6 changes: 3 additions & 3 deletions docs/wavelink.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
----------------------------
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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',
Expand Down
2 changes: 1 addition & 1 deletion wavelink/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 *
Expand Down

0 comments on commit df97d8e

Please sign in to comment.