release: 0.3.2
This commit is contained in:
2
Makefile
2
Makefile
@ -1,7 +1,7 @@
|
|||||||
# This file has been auto-generated.
|
# This file has been auto-generated.
|
||||||
# All changes will be lost, see Projectfile.
|
# All changes will be lost, see Projectfile.
|
||||||
#
|
#
|
||||||
# Updated at 2017-05-28 12:24:17.298429
|
# Updated at 2017-06-10 13:54:56.092476
|
||||||
|
|
||||||
PACKAGE ?= bonobo
|
PACKAGE ?= bonobo
|
||||||
PYTHON ?= $(shell which python)
|
PYTHON ?= $(shell which python)
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
__version__ = '0.3.1'
|
__version__ = '0.3.2'
|
||||||
|
|||||||
@ -1,6 +1,21 @@
|
|||||||
Changelog
|
Changelog
|
||||||
=========
|
=========
|
||||||
|
|
||||||
|
v.0.3.2 - 10 june 2017
|
||||||
|
::::::::::::::::::::::
|
||||||
|
|
||||||
|
Weekly maintenance release.
|
||||||
|
|
||||||
|
* Updated frozen version numbers in requirements.
|
||||||
|
|
||||||
|
* pytest==3.1.1
|
||||||
|
* requests==2.17.3
|
||||||
|
* sphinx==1.6.2
|
||||||
|
* stevedore==1.22.0
|
||||||
|
|
||||||
|
Note: this does not change anything when used as a dependency if you freeze your requirements, as the setup.py
|
||||||
|
requirement specifiers did not change.
|
||||||
|
|
||||||
v.0.3.1 - 28 may 2017
|
v.0.3.1 - 28 may 2017
|
||||||
:::::::::::::::::::::
|
:::::::::::::::::::::
|
||||||
|
|
||||||
|
|||||||
@ -2,23 +2,22 @@
|
|||||||
alabaster==0.7.10
|
alabaster==0.7.10
|
||||||
babel==2.4.0
|
babel==2.4.0
|
||||||
certifi==2017.4.17
|
certifi==2017.4.17
|
||||||
chardet==3.0.3
|
chardet==3.0.4
|
||||||
coverage==4.4.1
|
coverage==4.4.1
|
||||||
docutils==0.13.1
|
docutils==0.13.1
|
||||||
idna==2.5
|
idna==2.5
|
||||||
imagesize==0.7.1
|
imagesize==0.7.1
|
||||||
jinja2==2.9.6
|
jinja2==2.9.6
|
||||||
markupsafe==1.0
|
markupsafe==1.0
|
||||||
py==1.4.33
|
py==1.4.34
|
||||||
pygments==2.2.0
|
pygments==2.2.0
|
||||||
pytest-cov==2.5.1
|
pytest-cov==2.5.1
|
||||||
pytest-timeout==1.2.0
|
pytest-timeout==1.2.0
|
||||||
pytest==3.1.1
|
pytest==3.1.2
|
||||||
pytz==2017.2
|
pytz==2017.2
|
||||||
requests==2.17.3
|
requests==2.17.3
|
||||||
six==1.10.0
|
six==1.10.0
|
||||||
snowballstemmer==1.2.1
|
snowballstemmer==1.2.1
|
||||||
sphinx==1.6.2
|
sphinx==1.6.2
|
||||||
sphinxcontrib-websupport==1.0.1
|
sphinxcontrib-websupport==1.0.1
|
||||||
typing==3.6.1
|
|
||||||
urllib3==1.21.1
|
urllib3==1.21.1
|
||||||
|
|||||||
@ -2,11 +2,11 @@
|
|||||||
appnope==0.1.0
|
appnope==0.1.0
|
||||||
bleach==2.0.0
|
bleach==2.0.0
|
||||||
decorator==4.0.11
|
decorator==4.0.11
|
||||||
entrypoints==0.2.2
|
entrypoints==0.2.3
|
||||||
html5lib==0.999999999
|
html5lib==0.999999999
|
||||||
ipykernel==4.6.1
|
ipykernel==4.6.1
|
||||||
ipython-genutils==0.2.0
|
ipython-genutils==0.2.0
|
||||||
ipython==6.0.0
|
ipython==6.1.0
|
||||||
ipywidgets==6.0.0
|
ipywidgets==6.0.0
|
||||||
jedi==0.10.2
|
jedi==0.10.2
|
||||||
jinja2==2.9.6
|
jinja2==2.9.6
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
-e .
|
-e .
|
||||||
appdirs==1.4.3
|
appdirs==1.4.3
|
||||||
certifi==2017.4.17
|
certifi==2017.4.17
|
||||||
chardet==3.0.3
|
chardet==3.0.4
|
||||||
colorama==0.3.9
|
colorama==0.3.9
|
||||||
enum34==1.1.6
|
enum34==1.1.6
|
||||||
fs==2.0.3
|
fs==2.0.3
|
||||||
@ -11,5 +11,5 @@ psutil==5.2.2
|
|||||||
pytz==2017.2
|
pytz==2017.2
|
||||||
requests==2.17.3
|
requests==2.17.3
|
||||||
six==1.10.0
|
six==1.10.0
|
||||||
stevedore==1.22.0
|
stevedore==1.23.0
|
||||||
urllib3==1.21.1
|
urllib3==1.21.1
|
||||||
|
|||||||
@ -28,8 +28,6 @@ def test_define_with_decorator():
|
|||||||
def Concrete(self, *args, **kwargs):
|
def Concrete(self, *args, **kwargs):
|
||||||
calls.append((args, kwargs, ))
|
calls.append((args, kwargs, ))
|
||||||
|
|
||||||
print('handler', Concrete.handler)
|
|
||||||
|
|
||||||
assert callable(Concrete.handler)
|
assert callable(Concrete.handler)
|
||||||
t = Concrete('foo', bar='baz')
|
t = Concrete('foo', bar='baz')
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user