Skip to content

Commit dfcd715

Browse files
committed
remove 3.9 references, update sb output setting names
1 parent 1be5334 commit dfcd715

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

articles/azure-functions/functions-bindings-service-bus-output.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -282,8 +282,8 @@ app = func.FunctionApp()
282282

283283
@app.route(route="put_message")
284284
@app.service_bus_topic_output(arg_name="message",
285-
connection="<CONNECTION_SETTING>",
286-
topic_name="<TOPIC_NAME>")
285+
connection="AzureServiceBusConnectionString",
286+
topic_name="outTopic")
287287
def main(req: func.HttpRequest, message: func.Out[str]) -> func.HttpResponse:
288288
input_msg = req.params.get('message')
289289
message.set(input_msg)
@@ -300,8 +300,8 @@ app = func.FunctionApp()
300300
@app.route(route="put_message")
301301
@app.service_bus_queue_output(
302302
arg_name="msg",
303-
connection="<CONNECTION_SETTING>",
304-
queue_name="<QUEUE_NAME>")
303+
connection="AzureServiceBusConnectionString",
304+
queue_name="outqueue")
305305
def put_message(req: func.HttpRequest, msg: func.Out[str]):
306306
msg.set(req.get_body().decode('utf-8'))
307307
return 'OK'

articles/azure-functions/functions-reference-python.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -509,7 +509,7 @@ For select triggers and bindings, you can work with data types implemented by th
509509
### Prerequisites
510510

511511
* [Azure Functions runtime version](functions-versions.md?pivots=programming-language-python) version 4.34, or a later version.
512-
* [Python](https://www.python.org/downloads/) version 3.9, or a later [supported version](#python-version).
512+
* [Python](https://www.python.org/downloads/) version 3.10, or a later [supported version](#python-version).
513513

514514
### SDK Types
515515

@@ -1075,8 +1075,7 @@ Azure Functions supports the following Python versions:
10751075

10761076
| Functions version | Python\* versions |
10771077
| ----- | :-----: |
1078-
| 4.x | 3.12<br/>3.11<br/>3.10<br/>3.9<br/> |
1079-
| 3.x | 3.9<br/> |
1078+
| 4.x | 3.12<br/>3.11<br/>3.10<br/>|
10801079

10811080
\* Official Python distributions
10821081

@@ -1397,7 +1396,6 @@ The Python standard library contains a list of built-in Python modules that are
13971396
To view the library for your Python version, go to:
13981397

13991398

1400-
* [Python 3.9 standard library](https://docs.python.org/3.9/library/)
14011399
* [Python 3.10 standard library](https://docs.python.org/3.10/library/)
14021400
* [Python 3.11 standard library](https://docs.python.org/3.11/library/)
14031401
* [Python 3.12 standard library](https://docs.python.org/3.12/library/)

0 commit comments

Comments
 (0)