Skip to content

Commit

Permalink
Fixed dependencies in 'setup.py'
Browse files Browse the repository at this point in the history
  • Loading branch information
superbobry committed Jan 10, 2016
1 parent 5ef8387 commit b81cedf
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 8 deletions.
7 changes: 7 additions & 0 deletions CHANGES
Expand Up @@ -3,6 +3,13 @@ pyte Changelog


Here you can see the full list of changes between each pyte release. 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 Version 0.5.0
------------- -------------


Expand Down
1 change: 0 additions & 1 deletion MANIFEST.in
Expand Up @@ -6,7 +6,6 @@ include README


recursive-include docs *.rst recursive-include docs *.rst
include docs/conf.py include docs/conf.py
include docs/_static/rtd.css


recursive-include examples *.py recursive-include examples *.py
recursive-include tests *.py recursive-include tests *.py
2 changes: 1 addition & 1 deletion README
Expand Up @@ -9,7 +9,7 @@
| |_) || |_| || |_| __/ | |_) || |_| || |_| __/
| .__/ \__, | \__|\___| | .__/ \__, | \__|\___|
| | __/ | | | __/ |
|_| |___/ 0.5.0 |_| |___/ 0.5.1




What is ``pyte``? What is ``pyte``?
Expand Down
2 changes: 1 addition & 1 deletion centos/python26-pyte.spec
Expand Up @@ -2,7 +2,7 @@


Summary: Simple VTXXX-compatible terminal emulator Summary: Simple VTXXX-compatible terminal emulator
Name: python26-pyte Name: python26-pyte
Version: 0.5.0 Version: 0.5.1
Release: 1.selectel%{?dist} Release: 1.selectel%{?dist}
Vendor: Selectel Vendor: Selectel
License: LGPL License: LGPL
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Expand Up @@ -52,9 +52,9 @@
# built documents. # built documents.
# #
# The short X.Y version. # The short X.Y version.
version = '0.5.0' version = '0.5.1'
# The full version, including alpha/beta/rc tags. # 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 # The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages. # for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion pyte/streams.py
Expand Up @@ -148,7 +148,7 @@ def consume(self, char):
Use :meth:`feed` instead. Use :meth:`feed` instead.
""" """
warnings.warn(".consume is deprecated and will be removed in " 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) category=DeprecationWarning)
return self.feed(char) return self.feed(char)


Expand Down
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -48,9 +48,9 @@ def run_tests(self):




setup(name="pyte", setup(name="pyte",
version="0.5.0", version="0.5.1",
packages=["pyte"], packages=["pyte"],
requires=["wcwidth"], install_requires=["wcwidth"],
cmdclass={"test": PyTest}, cmdclass={"test": PyTest},
tests_require=["pytest"], tests_require=["pytest"],
platforms=["any"], platforms=["any"],
Expand Down

0 comments on commit b81cedf

Please sign in to comment.