Skip to content

Commit

Permalink
[tool]update llc-quick-start-tool for py3 only (Azure#22507)
Browse files Browse the repository at this point in the history
* update for py3 only

* Update setup.py
  • Loading branch information
msyyc authored Jan 14, 2022
1 parent 4094401 commit 2f89813
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion scripts/quickstart_tooling_llc/template/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ python -m pip install {{ package_name }}

#### Prequisites

- Python 2.7, or 3.6 or later is required to use this package.
- Python 3.6 or later is required to use this package.
- You need an [Azure subscription][azure_sub] to use this package.
- An existing {{ package_pprint_name }} instance.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
-e ../../../tools/azure-sdk-tools
../../core/azure-core
../../identity/azure-identity
../../nspkg/{{ folder_first }}-{{ folder_second }}-nspkg
aiohttp>=3.0;
typing_extensions>=3.7.2
asyncio;
1 change: 0 additions & 1 deletion scripts/quickstart_tooling_llc/template/sdk_packaging.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
[packaging]
package_name = "{{ package_name }}"
package_nspkg = "{{ folder_first }}-{{ folder_second }}-nspkg"
package_pprint_name = "{{ package_pprint_name }}"
package_doc_id = ""
is_stable = false
Expand Down
3 changes: 2 additions & 1 deletion scripts/quickstart_tooling_llc/template/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
Expand All @@ -64,5 +65,5 @@
"msrest>=0.6.21",
'six>=1.11.0',
],
python_requires=">=3.7",
python_requires=">=3.6",
)

0 comments on commit 2f89813

Please sign in to comment.