Skip to content

Commit 7ec5fb3

Browse files
committed
Use python -m pip for twine install; fix typo in sku.py docstring
1 parent af6ec92 commit 7ec5fb3

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.Pipelines/template-publish-package.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,9 @@ steps:
4040
versionSpec: ${{ parameters.pythonVersion }}
4141
displayName: 'Use Python ${{ parameters.pythonVersion }}'
4242

43-
- script: pip install twine
43+
- script: |
44+
python -m pip install --upgrade pip
45+
python -m pip install twine
4446
displayName: 'Install twine'
4547

4648
- task: TwineAuthenticate@1

msal/sku.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""This module is from where we recieve the client sku name and version.
1+
"""This module is from where we receive the client sku name and version.
22
"""
33

44
# The __init__.py will import this. Not the other way around.

0 commit comments

Comments
 (0)