Skip to content

Commit b8ae49c

Browse files
committed
-
1 parent c4353ee commit b8ae49c

File tree

10 files changed

+28
-25
lines changed

10 files changed

+28
-25
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.2, 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.3, 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.2'
48+
version = '0.6.3'
4949
# The full version, including alpha/beta/rc tags.
50-
release = '0.6.2'
50+
release = '0.6.3'
5151

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

misc/IDE files/Wing/python_toolbox_py2.wpr

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,11 @@ proj.directory-list = [{'dirloc': loc('../../..'),
3434
'watch_for_changes': True}]
3535
proj.file-type = 'shared'
3636
proj.home-dir = loc('../../..')
37-
proj.launch-config = {loc('../../../../../../../../Python27/Scripts/_test_python_toolbox.py'): (''\
38-
'custom',
37+
proj.launch-config = {loc('../../../../../../Desktop/fuck.py'): ('project',
38+
(u'',
39+
'launch-OHU716PSo2P5T54y')),
40+
loc('file:g:/Dropbox/Scripts and shortcuts/watch_for_bad_tsl_login_and_photograph.py'): (''\
41+
'project',
3942
(u'',
4043
'launch-OHU716PSo2P5T54y'))}
4144
testing.auto-test-file-specs = [('glob',

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.2, which is an alpha release. It's being used
120+
Python Toolbox is at version 0.6.3, 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
@@ -147,7 +147,7 @@ def get_packages():
147147

148148
setuptools.setup(
149149
name='python_toolbox',
150-
version='0.6.2',
150+
version='0.6.3',
151151
requires=['setuptools'],
152152
test_suite='nose.collector',
153153
install_requires=['setuptools'],

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, 2)
19+
__version_info__ = python_toolbox.version_info.VersionInfo(0, 6, 3)
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, 2, 'release'):
30+
if python_toolbox.__version_info__ <= (0, 6, 3, 'release'):
3131
raise nose.SkipTest("This test doesn't pass in `python_toolbox` "
32-
"version 0.6.2 and below, because `describe` :"
32+
"version 0.6.3 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, 2, 'release'):
250+
if python_toolbox.__version_info__ <= (0, 6, 3, 'release'):
251251
raise nose.SkipTest("This test doesn't pass in `python_toolbox`"
252-
"version 0.6.2 and below.")
252+
"version 0.6.3 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, 2, 'release'):
88+
if python_toolbox.__version_info__ <= (0, 6, 3, '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, 2, 'release'):
110+
if python_toolbox.__version_info__ <= (0, 6, 3, '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, 2, 'release'):
215+
if python_toolbox.__version_info__ <= (0, 6, 3, '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, 2, 'release'):
229+
if python_toolbox.__version_info__ <= (0, 6, 3, '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, 0)
19+
__version_info__ = python_toolbox.version_info.VersionInfo(0, 6, 3)
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, 0, 'release'):
30+
if python_toolbox.__version_info__ <= (0, 6, 3, 'release'):
3131
raise nose.SkipTest("This test doesn't pass in `python_toolbox` "
32-
"version 0.6.0 and below, because `describe` :"
32+
"version 0, 6, 3 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, 0, 'release'):
250+
if python_toolbox.__version_info__ <= (0, 6, 3, 'release'):
251251
raise nose.SkipTest("This test doesn't pass in `python_toolbox`"
252-
"version 0.6.0 and below.")
252+
"version 0, 6, 3 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, 0, 'release'):
88+
if python_toolbox.__version_info__ <= (0, 6, 3, '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, 0, 'release'):
110+
if python_toolbox.__version_info__ <= (0, 6, 3, '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, 0, 'release'):
215+
if python_toolbox.__version_info__ <= (0, 6, 3, '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, 0, 'release'):
229+
if python_toolbox.__version_info__ <= (0, 6, 3, 'release'):
230230
raise nose.SkipTest
231231
class MyContextManager(ContextManager):
232232
def __enter__(self):

0 commit comments

Comments
 (0)