Skip to content

Commit 5ac0afe

Browse files
authored
Bumping up the version to 1.1.1 with AzFuncPyLib-1-2.1 (#669)
Testing the new python functions library (1.2.1) https://pypi.org/project/azure-functions-worker/1.1.1/
1 parent fa9e9f5 commit 5ac0afe

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

setup.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -251,10 +251,16 @@ def run(self):
251251
self._install_extensions()
252252

253253

254+
with open("README.md") as readme:
255+
long_description = readme.read()
256+
257+
254258
setup(
255259
name='azure-functions-worker',
256-
version='1.1.0',
260+
version='1.1.1',
257261
description='Python Language Worker for Azure Functions Host',
262+
long_description=long_description,
263+
long_description_content_type='text/markdown',
258264
classifiers=[
259265
'License :: OSI Approved :: MIT License',
260266
'Intended Audience :: Developers',
@@ -279,7 +285,7 @@ def run(self):
279285
],
280286
extras_require={
281287
'dev': [
282-
'azure-functions==1.2.0',
288+
'azure-functions==1.2.1',
283289
'flake8~=3.7.9',
284290
'mypy',
285291
'pytest',

0 commit comments

Comments
 (0)