summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErik Rose <erik@mozilla.com>2018-06-21 09:55:49 -0400
committerErik Rose <erik@mozilla.com>2018-06-21 09:55:49 -0400
commita6be73029a1329ac927628cdca17e109c4bd902f (patch)
treebdd2374e102ca960ad46f1b2fc57be1c88059207
parented91a3581ade2aa0ec7ba41ce81851e28559c659 (diff)
downloadblessings-a6be73029a1329ac927628cdca17e109c4bd902f.tar.gz
Bump version to 1.7. Update readme.1.7
-rw-r--r--README.rst4
-rw-r--r--docs/conf.py2
-rw-r--r--setup.py2
3 files changed, 6 insertions, 2 deletions
diff --git a/README.rst b/README.rst
index 33a396b..77da433 100644
--- a/README.rst
+++ b/README.rst
@@ -440,6 +440,10 @@ Blessings is under the MIT License. See the LICENSE file.
Version History
===============
+1.7
+ * Drop support for Python 2.6 and 3.3, which are end-of-lifed.
+ * Switch from 2to3 to the ``six`` library.
+
1.6.1
* Don't crash if ``number_of_colors()`` is called when run in a non-terminal
or when ``does_styling`` is otherwise false.
diff --git a/docs/conf.py b/docs/conf.py
index 658fbc0..be17e53 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -50,7 +50,7 @@ copyright = u'2011, Erik Rose'
# built documents.
#
# The short X.Y version.
-version = '1.6.1'
+version = '1.7'
# The full version, including alpha/beta/rc tags.
release = version
diff --git a/setup.py b/setup.py
index adf5060..01488fc 100644
--- a/setup.py
+++ b/setup.py
@@ -12,7 +12,7 @@ from setuptools import setup, find_packages
setup(
name='blessings',
- version='1.6.1',
+ version='1.7',
description='A thin, practical wrapper around terminal coloring, styling, and positioning',
long_description=open('README.rst').read(),
author='Erik Rose',