Skip to content

Commit 2f215cb

Browse files
committed
-
1 parent ac51ec2 commit 2f215cb

File tree

9 files changed

+23
-23
lines changed

9 files changed

+23
-23
lines changed

README.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Please keep in mind that Python Toolbox is still in alpha stage, and that backwa
3434

3535
## Present ##
3636

37-
Python Toolbox is at version 0.6.6, which is an alpha release. It's being used in production every day, but backward compatibility isn't guaranteed yet.
37+
Python Toolbox is at version 0.6.7, which is an alpha release. It's being used in production every day, but backward compatibility isn't guaranteed yet.
3838

3939
## Next tasks ##
4040

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@
4545
# built documents.
4646
#
4747
# The short X.Y version.
48-
version = '0.6.6'
48+
version = '0.6.7'
4949
# The full version, including alpha/beta/rc tags.
50-
release = '0.6.6'
50+
release = '0.6.7'
5151

5252
# The language for content autogenerated by Sphinx. Refer to documentation
5353
# for a list of supported languages.

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ def get_packages():
117117
Present
118118
-------
119119
120-
Python Toolbox is at version 0.6.6, which is an alpha release. It's being used
120+
Python Toolbox is at version 0.6.7, which is an alpha release. It's being used
121121
in production every day, but backward compatibility isn't guaranteed yet.
122122
123123
Next tasks
@@ -153,7 +153,7 @@ def get_packages():
153153

154154
setuptools.setup(
155155
name='python_toolbox',
156-
version='0.6.6',
156+
version='0.6.7',
157157
test_suite='nose.collector',
158158
install_requires=install_requires,
159159
tests_require=['nose>=1.0.0',

source_py2/python_toolbox/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@
1616
import python_toolbox.monkeypatch_copy_reg
1717
import python_toolbox.monkeypatch_envelopes
1818

19-
__version_info__ = python_toolbox.version_info.VersionInfo(0, 6, 6)
19+
__version_info__ = python_toolbox.version_info.VersionInfo(0, 6, 7)
2020
__version__ = __version_info__.version_text
2121

source_py2/test_python_toolbox/test_address_tools/test_describe.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ def test_on_locally_defined_class():
2727
# Testing for locally defined class:
2828

2929

30-
if python_toolbox.__version_info__ <= (0, 6, 6, 'release'):
30+
if python_toolbox.__version_info__ <= (0, 6, 7, 'release'):
3131
raise nose.SkipTest("This test doesn't pass in `python_toolbox` "
32-
"version 0.6.6 and below, because `describe` :"
32+
"version 0.6.7 and below, because `describe` :"
3333
"doesn't support nested classes yet.")
3434

3535
result = describe(A.B)
@@ -247,9 +247,9 @@ def test_bad_module_name():
247247

248248
def test_function_in_something():
249249
'''Test `describe` doesn't fail when describing `{1: sum}`.'''
250-
if python_toolbox.__version_info__ <= (0, 6, 6, 'release'):
250+
if python_toolbox.__version_info__ <= (0, 6, 7, 'release'):
251251
raise nose.SkipTest("This test doesn't pass in `python_toolbox`"
252-
"version 0.6.6 and below.")
252+
"version 0.6.7 and below.")
253253
assert describe({1: sum}) == '{1: sum}'
254254
assert describe((sum, sum, list, chr)) == '(sum, sum, list, chr)'
255255

source_py2/test_python_toolbox/test_context_management/test_external.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def woohoo():
8585
self.assertEqual(state, [1, 42, 999])
8686

8787
def _create_contextmanager_attribs(self):
88-
if python_toolbox.__version_info__ <= (0, 6, 6, 'release'):
88+
if python_toolbox.__version_info__ <= (0, 6, 7, 'release'):
8989
raise nose.SkipTest
9090
def attribs(**kw):
9191
def decorate(func):
@@ -107,7 +107,7 @@ def test_contextmanager_attribs(self):
107107
@unittest2.skipIf(hasattr(sys, 'flags') and sys.flags.optimize >= 2,
108108
"Docstrings are omitted with -O2 and above")
109109
def test_contextmanager_doc_attrib(self):
110-
if python_toolbox.__version_info__ <= (0, 6, 6, 'release'):
110+
if python_toolbox.__version_info__ <= (0, 6, 7, 'release'):
111111
raise nose.SkipTest('Not sure what to do about this.')
112112
baz = self._create_contextmanager_attribs()
113113
self.assertEqual(baz.__doc__, "Whee!")
@@ -212,7 +212,7 @@ def method(self, a, b, c=None):
212212

213213

214214
def test_typo_enter(self):
215-
if python_toolbox.__version_info__ <= (0, 6, 6, 'release'):
215+
if python_toolbox.__version_info__ <= (0, 6, 7, 'release'):
216216
raise nose.SkipTest
217217
class MyContextManager(ContextManager):
218218
def __unter__(self):
@@ -226,7 +226,7 @@ def __exit__(self, *exc):
226226

227227

228228
def test_typo_exit(self):
229-
if python_toolbox.__version_info__ <= (0, 6, 6, 'release'):
229+
if python_toolbox.__version_info__ <= (0, 6, 7, 'release'):
230230
raise nose.SkipTest
231231
class MyContextManager(ContextManager):
232232
def __enter__(self):

source_py3/python_toolbox/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@
1616
import python_toolbox.monkeypatch_copyreg
1717
import python_toolbox.monkeypatch_envelopes
1818

19-
__version_info__ = python_toolbox.version_info.VersionInfo(0, 6, 6)
19+
__version_info__ = python_toolbox.version_info.VersionInfo(0, 6, 7)
2020
__version__ = __version_info__.version_text
2121

source_py3/test_python_toolbox/test_address_tools/test_describe.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ def test_on_locally_defined_class():
2727
# Testing for locally defined class:
2828

2929

30-
if python_toolbox.__version_info__ <= (0, 6, 6, 'release'):
30+
if python_toolbox.__version_info__ <= (0, 6, 7, 'release'):
3131
raise nose.SkipTest("This test doesn't pass in `python_toolbox` "
32-
"version 0.6.6 and below, because `describe` :"
32+
"version 0.6.7 and below, because `describe` :"
3333
"doesn't support nested classes yet.")
3434

3535
result = describe(A.B)
@@ -247,9 +247,9 @@ def test_bad_module_name():
247247

248248
def test_function_in_something():
249249
'''Test `describe` doesn't fail when describing `{1: sum}`.'''
250-
if python_toolbox.__version_info__ <= (0, 6, 6, 'release'):
250+
if python_toolbox.__version_info__ <= (0, 6, 7, 'release'):
251251
raise nose.SkipTest("This test doesn't pass in `python_toolbox`"
252-
"version 0.6.6 and below.")
252+
"version 0.6.7 and below.")
253253
assert describe({1: sum}) == '{1: sum}'
254254
assert describe((sum, sum, list, chr)) == '(sum, sum, list, chr)'
255255

source_py3/test_python_toolbox/test_context_management/test_external.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def whoo():
8585
#self.assertEqual(state, [1, 42, 999])
8686

8787
def _create_contextmanager_attribs(self):
88-
if python_toolbox.__version_info__ <= (0, 6, 6, 'release'):
88+
if python_toolbox.__version_info__ <= (0, 6, 7, 'release'):
8989
raise nose.SkipTest
9090
def attribs(**kw):
9191
def decorate(func):
@@ -107,7 +107,7 @@ def test_contextmanager_attribs(self):
107107
@unittest2.skipIf(hasattr(sys, 'flags') and sys.flags.optimize >= 2,
108108
"Docstrings are omitted with -O2 and above")
109109
def test_contextmanager_doc_attrib(self):
110-
if python_toolbox.__version_info__ <= (0, 6, 6, 'release'):
110+
if python_toolbox.__version_info__ <= (0, 6, 7, 'release'):
111111
raise nose.SkipTest('Not sure what to do about this.')
112112
baz = self._create_contextmanager_attribs()
113113
self.assertEqual(baz.__doc__, "Whee!")
@@ -212,7 +212,7 @@ def method(self, a, b, c=None):
212212

213213

214214
def test_typo_enter(self):
215-
if python_toolbox.__version_info__ <= (0, 6, 6, 'release'):
215+
if python_toolbox.__version_info__ <= (0, 6, 7, 'release'):
216216
raise nose.SkipTest
217217
class MyContextManager(ContextManager):
218218
def __unter__(self):
@@ -226,7 +226,7 @@ def __exit__(self, *exc):
226226

227227

228228
def test_typo_exit(self):
229-
if python_toolbox.__version_info__ <= (0, 6, 6, 'release'):
229+
if python_toolbox.__version_info__ <= (0, 6, 7, 'release'):
230230
raise nose.SkipTest
231231
class MyContextManager(ContextManager):
232232
def __enter__(self):

0 commit comments

Comments
 (0)