Skip to content

Commit

Permalink
prep for 0.2.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
pri22296 committed May 5, 2017
1 parent 4c68f0f commit bc21be1
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
3 changes: 3 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ BeautifulTable
.. image:: https://landscape.io/github/pri22296/beautifultable/master/landscape.svg?style=flat
:target: https://landscape.io/github/pri22296/beautifultable/master
:alt: Code Health

.. image:: https://travis-ci.org/pri22296/beautifultable.svg?branch=master
:target: https://travis-ci.org/pri22296/beautifultable

.. image:: https://readthedocs.org/projects/beautifultable/badge/?version=latest
:alt: Documentation Status
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@
# built documents.
#
# The short X.Y version.
version = '0.1'
version = '0.2'
# The full version, including alpha/beta/rc tags.
release = '0.1.3'
release = '0.2.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
9 changes: 7 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
from setuptools import setup
import sys

version = '0.1.3'
version = '0.2.0'
install_requires = []

if sys.version_info < (3, 4):
if sys.version_info[:2] < (3, 4):
install_requires.append('enum34')

setup(name='beautifultable',
Expand All @@ -25,7 +25,12 @@
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Printing',
'Topic :: Text Processing',
],
Expand Down

0 comments on commit bc21be1

Please sign in to comment.