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

Bitbucket commits-noreply at bitbucket.org
Fri Oct 19 15:01:57 CEST 2012


2 new commits in py:


https://bitbucket.org/hpk42/py/changeset/7f37ee0aff9b/
changeset:   7f37ee0aff9b
user:        hpk42
date:        2012-10-19 10:52:12
summary:     fix bug, bump version to 1.4.10 for release
affected #:  6 files

diff -r 605099c880b9cdefca0fbdb1f6eaced561fe04a2 -r 7f37ee0aff9be4b839d6759cfee336f60e8393a4 CHANGELOG
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,4 +1,4 @@
-Changes between 1.4.9 and 1.4.10.dev
+Changes between 1.4.9 and 1.4.10
 ==================================================
 
 - terminalwriter: default to encode to UTF8 if no encoding is defined


diff -r 605099c880b9cdefca0fbdb1f6eaced561fe04a2 -r 7f37ee0aff9be4b839d6759cfee336f60e8393a4 doc/install.txt
--- a/doc/install.txt
+++ b/doc/install.txt
@@ -7,7 +7,7 @@
 
 **PyPI name**: py_
 
-**Pythons**: 2.4, 2.5, 2.6, 2.7, 3.0, 3.1.x, Jython-2.5.1, PyPy-1.3
+**Pythons**: 2.5, 2.6, 2.7, 3.0, 3.1.x, Jython-2.5.1, PyPy-1.3
 
 **Operating systems**: Linux, Windows, OSX, Unix
 


diff -r 605099c880b9cdefca0fbdb1f6eaced561fe04a2 -r 7f37ee0aff9be4b839d6759cfee336f60e8393a4 py/__init__.py
--- a/py/__init__.py
+++ b/py/__init__.py
@@ -8,7 +8,7 @@
 
 (c) Holger Krekel and others, 2004-2010
 """
-__version__ = '1.4.10.dev2'
+__version__ = '1.4.10'
 
 from py import _apipkg
 


diff -r 605099c880b9cdefca0fbdb1f6eaced561fe04a2 -r 7f37ee0aff9be4b839d6759cfee336f60e8393a4 setup.py
--- a/setup.py
+++ b/setup.py
@@ -12,7 +12,7 @@
         name='py',
         description='library with cross-python path, ini-parsing, io, code, log facilities',
         long_description = open('README.txt').read(),
-        version='1.4.10.dev2',
+        version='1.4.10',
         url='http://pylib.org',
         license='MIT license',
         platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'],


diff -r 605099c880b9cdefca0fbdb1f6eaced561fe04a2 -r 7f37ee0aff9be4b839d6759cfee336f60e8393a4 testing/code/test_source.py
--- a/testing/code/test_source.py
+++ b/testing/code/test_source.py
@@ -232,7 +232,7 @@
 
     @py.test.mark.skipif("sys.version_info < (2,6)")
     def test_getstatementrange_out_of_bounds_py3(self):
-        source = Source("if xxx:\n   from .collections import *")
+        source = Source("if xxx:\n   from .collections import something")
         r = source.getstatementrange(1)
         assert r == (1,2)
 


diff -r 605099c880b9cdefca0fbdb1f6eaced561fe04a2 -r 7f37ee0aff9be4b839d6759cfee336f60e8393a4 tox.ini
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
 [tox]
-envlist=py26,py27,py31,py32,py27-xdist,py25,py24
+envlist=py26,py27,py31,py32,py27-xdist,py25
 #indexserver=
 #    default=http://pypi.testrun.org
 



https://bitbucket.org/hpk42/py/changeset/4532fe5ee826/
changeset:   4532fe5ee826
user:        hpk42
date:        2012-10-19 11:00:30
summary:     Added tag 1.4.10 for changeset 7f37ee0aff9b
affected #:  1 file

diff -r 7f37ee0aff9be4b839d6759cfee336f60e8393a4 -r 4532fe5ee826808805b373e9296d2baf4db254d9 .hgtags
--- a/.hgtags
+++ b/.hgtags
@@ -39,3 +39,4 @@
 b827dd156a36753e32c7f3f15ce82d6fe9e356c8 1.4.6
 f15726f9e5a67cc6221c499affa4840e9d591763 1.4.7
 abfabd07a1d328f13c730e8a50d80d2e470afd3b 1.4.9
+7f37ee0aff9be4b839d6759cfee336f60e8393a4 1.4.10

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