You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/pipelines/ecosystems/customize-python.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ title: Customize Python pipelines
3
3
description: See how to use Azure Pipelines to customize, build, test, package, and deliver Python apps and code.
4
4
ms.topic: conceptual
5
5
ms.custom: devx-track-python
6
-
ms.date: 07/12/2024
6
+
ms.date: 06/09/2025
7
7
monikerRange: '<= azure-devops'
8
8
---
9
9
@@ -12,7 +12,7 @@ monikerRange: '<= azure-devops'
12
12
This article describes how to customize building, testing, packaging, and delivering Python apps and code in Azure Pipelines. To create your first pipeline with Python, see the [Python quickstart](python.md).
13
13
14
14
::: moniker range=">=azure-devops"
15
-
With [Microsoft-hosted agents](../agents/hosted.md) in Azure Pipelines, you can build your Python apps without having to set up your own infrastructure. Tools that you commonly use to build, test, and run Python apps, including `pip`, are preinstalled.
15
+
With [Microsoft-hosted agents](../agents/hosted.md) in Azure Pipelines, you can build Python apps without setting up your own infrastructure. Tools that you commonly use to build, test, and run Python apps, including `pip`, are preinstalled.
16
16
17
17
You might need to [request the free grant of parallel jobs](https://aka.ms/azpipelines-parallelism-request) or purchase a [parallel job](../licensing/concurrent-jobs.md) to run your pipelines.
To authenticate with `twine`, use the [Python twine upload authenticate task](/azure/devops/pipelines/tasks/reference/twine-authenticate-v1) to store authentication credentials in the `PYPIRC_PATH` environment variable.
199
+
Authenticate with `twine` by using the [Python twine upload authenticate task](/azure/devops/pipelines/tasks/reference/twine-authenticate-v1) to store authentication credentials in the `PYPIRC_PATH` environment variable.
200
200
201
201
```yaml
202
-
- task: TwineAuthenticate@0
202
+
- task: TwineAuthenticate@1
203
203
inputs:
204
204
artifactFeed: '<Azure Artifacts feed name>'
205
205
pythonUploadServiceConnection: '<twine service connection from external organization>'
0 commit comments