Skip to content

Commit 8c69b4e

Browse files
authored
v1.0.0 (#540)
1 parent 0217fe4 commit 8c69b4e

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

README.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,6 @@
55
|master|[![Build Status](https://azfunc.visualstudio.com/Azure%20Functions%20Python/_apis/build/status/Azure%20Functions%20Python-CI?branchName=master)](https://azfunc.visualstudio.com/Azure%20Functions%20Python/_build/latest?definitionId=3&branchName=master)|
66
|dev|[![Build Status](https://azfunc.visualstudio.com/Azure%20Functions%20Python/_apis/build/status/Azure%20Functions%20Python-CI?branchName=dev)](https://azfunc.visualstudio.com/Azure%20Functions%20Python/_build/latest?definitionId=3&branchName=dev)|
77

8-
This repository will host the Python language worker implementation for Azure Functions. We'll also be using it to track work items related to Python support. Please feel free to leave comments about any of the features and design patterns.
9-
10-
> :construction: The project is currently **work in progress**. Please **do not use in production** as we expect developments over time. To receive important updates, including breaking changes announcements, watch the [Azure App Service announcements](https://github.com/Azure/app-service-announcements/issues) repository. :construction:
11-
128
# Overview
139

1410
Python support for Azure Functions is based on Python3.6, serverless hosting on Linux and the Functions 2.0 runtime.
@@ -20,10 +16,10 @@ What's available?
2016
- Build, test, debug and publish using Azure Functions Core Tools (CLI) or Visual Studio Code
2117
- Triggers / Bindings : HTTP, Blob, Queue, Timer, Cosmos DB, Event Grid, Event Hubs and Service Bus
2218
- Create a Python Function on Linux using a custom docker image
19+
- Triggers / Bindings : Custom binding support
2320

2421
What's coming?
2522

26-
- Triggers / Bindings : Custom binding support
2723
- Python 3.7 support
2824

2925
# Get Started

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ def run(self):
223223

224224
setup(
225225
name='azure-functions-worker',
226-
version='1.0.0b11',
226+
version='1.0.0',
227227
description='Python Language Worker for Azure Functions Host',
228228
classifiers=[
229229
'License :: OSI Approved :: MIT License',
@@ -233,7 +233,7 @@ def run(self):
233233
'Operating System :: POSIX',
234234
'Operating System :: MacOS :: MacOS X',
235235
'Environment :: Web Environment',
236-
'Development Status :: 4 - Beta',
236+
'Development Status :: 5 - Production/Stable',
237237
],
238238
license='MIT',
239239
packages=['azure_functions_worker',

0 commit comments

Comments
 (0)