[Pytest-commit] commit/py: 2 new changesets

commits-noreply at bitbucket.org commits-noreply at bitbucket.org
Fri Sep 5 12:57:47 CEST 2014


2 new commits in py:

https://bitbucket.org/hpk42/py/commits/5ffd982f4dff/
Changeset:   5ffd982f4dff
User:        hpk42
Date:        2014-09-05 12:57:10
Summary:     bump to 1.4.24, fix a test to work with newer colorama
Affected #:  4 files

diff -r 74b757aec58c65d8ba61eb5a4d91201e59012b50 -r 5ffd982f4dff60b588f309cd9bdc61036547282a CHANGELOG
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,4 +1,4 @@
-1.4.24.dev
+1.4.24
 ==================================================
 
 - Fix retrieving source when an else: line has an other statement on

diff -r 74b757aec58c65d8ba61eb5a4d91201e59012b50 -r 5ffd982f4dff60b588f309cd9bdc61036547282a py/__init__.py
--- a/py/__init__.py
+++ b/py/__init__.py
@@ -6,9 +6,9 @@
 name->value mappings where value can be another namespace
 dictionary or an import path.
 
-(c) Holger Krekel and others, 2004-2013
+(c) Holger Krekel and others, 2004-2014
 """
-__version__ = '1.4.23'
+__version__ = '1.4.24'
 
 from py import _apipkg
 

diff -r 74b757aec58c65d8ba61eb5a4d91201e59012b50 -r 5ffd982f4dff60b588f309cd9bdc61036547282a setup.py
--- a/setup.py
+++ b/setup.py
@@ -7,7 +7,7 @@
         name='py',
         description='library with cross-python path, ini-parsing, io, code, log facilities',
         long_description = open('README.txt').read(),
-        version='1.4.24.dev1',
+        version='1.4.24',
         url='http://pylib.readthedocs.org/',
         license='MIT license',
         platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'],

diff -r 74b757aec58c65d8ba61eb5a4d91201e59012b50 -r 5ffd982f4dff60b588f309cd9bdc61036547282a testing/io_/test_terminalwriter.py
--- a/testing/io_/test_terminalwriter.py
+++ b/testing/io_/test_terminalwriter.py
@@ -54,6 +54,7 @@
 def test_terminalwriter_dumb_term_no_markup(monkeypatch):
     monkeypatch.setattr(os, 'environ', {'TERM': 'dumb', 'PATH': ''})
     class MyFile:
+        closed = False
         def isatty(self):
             return True
     monkeypatch.setattr(sys, 'stdout', MyFile())


https://bitbucket.org/hpk42/py/commits/9373a488bf7e/
Changeset:   9373a488bf7e
User:        hpk42
Date:        2014-09-05 12:57:15
Summary:     Added tag 1.4.24 for changeset 5ffd982f4dff
Affected #:  1 file

diff -r 5ffd982f4dff60b588f309cd9bdc61036547282a -r 9373a488bf7e7f5940a60ea6b491e067ae8fa93f .hgtags
--- a/.hgtags
+++ b/.hgtags
@@ -56,3 +56,4 @@
 a3e0626aa0c5aecf271367dc77e476ab216ea3c8 1.4.20
 5e48016c4a3af8e7358a1267d33d021e71765bed 1.4.21
 01ae2cfcc61c4fcb3aa5031349adb5b467c31018 1.4.23
+5ffd982f4dff60b588f309cd9bdc61036547282a 1.4.24

Repository URL: https://bitbucket.org/hpk42/py/

--

This is a commit notification from bitbucket.org. You are receiving
this because you have the service enabled, addressing the recipient of
this email.


More information about the pytest-commit mailing list