Skip to content

Commit

Permalink
Prep for 0.8.4
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathaneunice committed Jan 23, 2019
1 parent 264aee1 commit 20e2e8c
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ python:
- "3.4"
- "3.5"
- "3.6"
- "nightly"
- "3.7-dev"
- "pypy"
- "pypy3.3-5.2-alpha1"
- "pypy3.5"
install:
- pip install ansicolors
- pip install textwrap3
Expand Down
6 changes: 6 additions & 0 deletions CHANGES.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
-
version: 0.8.4
date: January 23, 2019
notes: >
Updated testing matrix.
-
version: 0.8.3
date: June 14, 2017
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ functions of ``textwrap``. For example::
It also exports several other functions:

* ``ansilen`` (giving the effective length of a string, ignoring ANSI control codes)
* ``ansi_terminate_lines`` (propogates control codes though a list of strings/lines
* ``ansi_terminate_lines`` (propagates control codes though a list of strings/lines
and terminates each line.)
* ``strip_color`` (removes ANSI control codes from a string)

Expand Down
2 changes: 1 addition & 1 deletion ansiwrap/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .core import *

__version__ = '0.8.3'
__version__ = '0.8.4'

5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def lines(text):

setup(
name='ansiwrap',
version='0.8.3',
version='0.8.4',
author='Jonathan Eunice',
author_email='jonathan.eunice@gmail.com',
description="textwrap, but savvy to ANSI colors and styles",
Expand All @@ -23,7 +23,7 @@ def lines(text):
license='Apache License 2.0',
packages=['ansiwrap'],
setup_requires=[],
install_requires=['textwrap3'],
install_requires=['textwrap3>=0.9.2'],
tests_require=['tox', 'pytest', 'ansicolors>=1.1.8', 'coverage', 'pytest-cov'],
test_suite="test",
zip_safe=False,
Expand All @@ -43,6 +43,7 @@ def lines(text):
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Software Development :: Libraries :: Python Modules
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py2{6,7}, pypy, py3{3,4,5,6}, pypy3
envlist = py27, py3{6,7}

[testenv]
# changedir=test
Expand Down
2 changes: 1 addition & 1 deletion toxcov.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = cov-init, py2{6,7}, pypy, py3{3,4,5,6}, pypy3, cov-report
envlist = cov-init, py27, py3{6,7}, cov-report

[testenv:cov-init]
setenv =
Expand Down

0 comments on commit 20e2e8c

Please sign in to comment.