Skip to content

Commit 6a6ff07

Browse files
committed
-
1 parent 386a871 commit 6a6ff07

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Please keep in mind that Python Toolbox is still in alpha stage, and that backwa
3232

3333
## Present ##
3434

35-
Python Toolbox is at version 0.4, which is an alpha release. It's being used in production every day, but backward compatibility isn't guaranteed yet.
35+
Python Toolbox is at version 0.4.1, which is an alpha release. It's being used in production every day, but backward compatibility isn't guaranteed yet.
3636

3737
## Next tasks ##
3838

@@ -64,5 +64,5 @@ It also supports PyPy 2.0. (Which runs Python 2.7.)
6464

6565
# Current state #
6666

67-
The Python Toolbox is at version 0.4, which is an alpha release. At this experimental stage of the project, backward compatibility will _not_ be maintained.
67+
The Python Toolbox is at version 0.4.1, which is an alpha release. At this experimental stage of the project, backward compatibility will _not_ be maintained.
6868

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def get_packages():
102102
Present
103103
-------
104104
105-
Python Toolbox is at version 0.4, which is an alpha release. It's being used in production every day, but backward compatibility isn't guaranteed yet.
105+
Python Toolbox is at version 0.4.1, which is an alpha release. It's being used in production every day, but backward compatibility isn't guaranteed yet.
106106
107107
Next tasks
108108
----------
@@ -132,7 +132,7 @@ def get_packages():
132132

133133
setuptools.setup(
134134
name='python_toolbox',
135-
version='0.4',
135+
version='0.4.1',
136136
requires=['distribute'],
137137
test_suite='nose.collector',
138138
install_requires=['distribute'],

test_python_toolbox/test_address_tools/test_describe.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def test_on_locally_defined_class():
3131

3232
if python_toolbox.__version_info__ <= (0, 4, 1, 'release'):
3333
raise nose.SkipTest("This test doesn't pass in `python_toolbox` "
34-
"version 0.4 and below, because `describe` :"
34+
"version 0.4.1 and below, because `describe` :"
3535
"doesn't support nested classes yet.")
3636

3737
result = describe(A.B)
@@ -251,7 +251,7 @@ def test_function_in_something():
251251
'''Test `describe` doesn't fail when describing `{1: sum}`.'''
252252
if python_toolbox.__version_info__ <= (0, 4, 1, 'release'):
253253
raise nose.SkipTest("This test doesn't pass in `python_toolbox`"
254-
"version 0.4 and below.")
254+
"version 0.4.1 and below.")
255255
assert describe({1: sum}) == '{1: sum}'
256256
assert describe((sum, sum, list, chr)) == '(sum, sum, list, chr)'
257257

0 commit comments

Comments
 (0)