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

commits-noreply at bitbucket.org commits-noreply at bitbucket.org
Fri Sep 5 14:55:24 CEST 2014


2 new commits in py:

https://bitbucket.org/hpk42/py/commits/68a09c47feb4/
Changeset:   68a09c47feb4
User:        hpk42
Date:        2014-09-05 14:54:37
Summary:     1.4.25.dev
==================================================

ifix issue52: vaguely fix py25 compat of py.path.local (it's not
officially supported)
Affected #:  2 files

diff -r 9373a488bf7e7f5940a60ea6b491e067ae8fa93f -r 68a09c47feb4e792cfc71ff003f59e0c63f4c661 CHANGELOG
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,9 @@
+1.4.25.dev
+==================================================
+
+- ifix issue52: vaguely fix py25 compat of py.path.local (it's not
+  officially supported)
+
 1.4.24
 ==================================================
 

diff -r 9373a488bf7e7f5940a60ea6b491e067ae8fa93f -r 68a09c47feb4e792cfc71ff003f59e0c63f4c661 py/_path/local.py
--- a/py/_path/local.py
+++ b/py/_path/local.py
@@ -1,6 +1,8 @@
 """
 local path implementation.
 """
+from __future__ import with_statement
+
 from contextlib import contextmanager
 import sys, os, re, atexit, io
 import py


https://bitbucket.org/hpk42/py/commits/75ef6111820e/
Changeset:   75ef6111820e
User:        hpk42
Date:        2014-09-05 14:55:05
Summary:     fix issue52: vaguely fix py25 compat of py.path.local (it's not
officially supported)
Affected #:  3 files

diff -r 68a09c47feb4e792cfc71ff003f59e0c63f4c661 -r 75ef6111820efd0bd3dd250e069056c219511a43 CHANGELOG
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,7 +1,7 @@
 1.4.25.dev
 ==================================================
 
-- ifix issue52: vaguely fix py25 compat of py.path.local (it's not
+- fix issue52: vaguely fix py25 compat of py.path.local (it's not
   officially supported)
 
 1.4.24

diff -r 68a09c47feb4e792cfc71ff003f59e0c63f4c661 -r 75ef6111820efd0bd3dd250e069056c219511a43 py/__init__.py
--- a/py/__init__.py
+++ b/py/__init__.py
@@ -8,7 +8,7 @@
 
 (c) Holger Krekel and others, 2004-2014
 """
-__version__ = '1.4.24'
+__version__ = '1.4.25.dev'
 
 from py import _apipkg
 

diff -r 68a09c47feb4e792cfc71ff003f59e0c63f4c661 -r 75ef6111820efd0bd3dd250e069056c219511a43 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',
+        version='1.4.25.dev',
         url='http://pylib.readthedocs.org/',
         license='MIT license',
         platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'],

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