Skip to content

Commit

Permalink
Bump version and remove < Python 3.6 support
Browse files Browse the repository at this point in the history
  • Loading branch information
mdlockyer committed Aug 24, 2020
1 parent 0bf5cb2 commit a59c97e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
language: python
python:
- "3.4"
- "3.5"
- "3.6"
- "3.7"
- "3.8"
install:
- pip install pytest
- pip install pytest-cov
Expand Down
2 changes: 1 addition & 1 deletion PrintTags/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-

__version__ = '1.4.0'
__version__ = '1.5.0'

from .colors import Colors

Expand Down
14 changes: 9 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,23 @@
description = 'A lightweight, tagged, and color-coded Python 3 print alternative'
long_description = (
'PrintTags is a lightweight package designed to act as an '
'alternative to the built-in Python 3 print function. It prints '
'alternative to the built-in Python 3.6+ print function. It prints '
'color coded, tagged messages that can be useful in debugging, '
'or if you just prefer a cleaner appearance in your terminal.'
)
url = 'https://github.com/MichaelDylan77/PrintTags'
url = 'https://github.com/mdlockyer/PrintTags'
author = 'Michael Lockyer'
author_email = 'mdlockyer@gmail.com'
version = PrintTags.__version__
license = 'MIT License'
classifiers = (
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Intended Audience :: Developers',
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
)
packages = find_packages()

Expand Down

0 comments on commit a59c97e

Please sign in to comment.