From b81cedfcca9d2e0bfdab3f159e2aaedb49c48018 Mon Sep 17 00:00:00 2001 From: Sergei Lebedev Date: Sun, 10 Jan 2016 22:46:50 +0300 Subject: [PATCH] Fixed dependencies in 'setup.py' --- CHANGES | 7 +++++++ MANIFEST.in | 1 - README | 2 +- centos/python26-pyte.spec | 2 +- docs/conf.py | 4 ++-- pyte/streams.py | 2 +- setup.py | 4 ++-- 7 files changed, 14 insertions(+), 8 deletions(-) diff --git a/CHANGES b/CHANGES index 698e7df..e1f0847 100644 --- a/CHANGES +++ b/CHANGES @@ -3,6 +3,13 @@ pyte Changelog Here you can see the full list of changes between each pyte release. +Version 0.5.1 +------------- + +Bugfix release, released on January 10th 2015 + +- Fixed dependencies in setup.py. + Version 0.5.0 ------------- diff --git a/MANIFEST.in b/MANIFEST.in index aef66d5..470a0bc 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -6,7 +6,6 @@ include README recursive-include docs *.rst include docs/conf.py -include docs/_static/rtd.css recursive-include examples *.py recursive-include tests *.py diff --git a/README b/README index d013d20..ce56acd 100644 --- a/README +++ b/README @@ -9,7 +9,7 @@ | |_) || |_| || |_| __/ | .__/ \__, | \__|\___| | | __/ | - |_| |___/ 0.5.0 + |_| |___/ 0.5.1 What is ``pyte``? diff --git a/centos/python26-pyte.spec b/centos/python26-pyte.spec index e44f491..3e8fbe9 100644 --- a/centos/python26-pyte.spec +++ b/centos/python26-pyte.spec @@ -2,7 +2,7 @@ Summary: Simple VTXXX-compatible terminal emulator Name: python26-pyte -Version: 0.5.0 +Version: 0.5.1 Release: 1.selectel%{?dist} Vendor: Selectel License: LGPL diff --git a/docs/conf.py b/docs/conf.py index 16000d2..96beda4 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -52,9 +52,9 @@ # built documents. # # The short X.Y version. -version = '0.5.0' +version = '0.5.1' # The full version, including alpha/beta/rc tags. -release = '0.5.0' +release = '0.5.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pyte/streams.py b/pyte/streams.py index 7af3276..627ad2e 100644 --- a/pyte/streams.py +++ b/pyte/streams.py @@ -148,7 +148,7 @@ def consume(self, char): Use :meth:`feed` instead. """ warnings.warn(".consume is deprecated and will be removed in " - "pyte 0.5.1. Please use .feed instead.", + "pyte 0.5.2. Please use .feed instead.", category=DeprecationWarning) return self.feed(char) diff --git a/setup.py b/setup.py index f989cbb..1eaf074 100755 --- a/setup.py +++ b/setup.py @@ -48,9 +48,9 @@ def run_tests(self): setup(name="pyte", - version="0.5.0", + version="0.5.1", packages=["pyte"], - requires=["wcwidth"], + install_requires=["wcwidth"], cmdclass={"test": PyTest}, tests_require=["pytest"], platforms=["any"],