Skip to content

Commit 2f89813

Browse files
authored
[tool]update llc-quick-start-tool for py3 only (#22507)
* update for py3 only * Update setup.py
1 parent 4094401 commit 2f89813

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

scripts/quickstart_tooling_llc/template/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ python -m pip install {{ package_name }}
1616

1717
#### Prequisites
1818

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

scripts/quickstart_tooling_llc/template/dev_requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
-e ../../../tools/azure-sdk-tools
33
../../core/azure-core
44
../../identity/azure-identity
5-
../../nspkg/{{ folder_first }}-{{ folder_second }}-nspkg
65
aiohttp>=3.0;
76
typing_extensions>=3.7.2
87
asyncio;

scripts/quickstart_tooling_llc/template/sdk_packaging.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
[packaging]
22
package_name = "{{ package_name }}"
3-
package_nspkg = "{{ folder_first }}-{{ folder_second }}-nspkg"
43
package_pprint_name = "{{ package_pprint_name }}"
54
package_doc_id = ""
65
is_stable = false

scripts/quickstart_tooling_llc/template/setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@
4545
"Programming Language :: Python",
4646
"Programming Language :: Python :: 3 :: Only",
4747
"Programming Language :: Python :: 3",
48+
"Programming Language :: Python :: 3.6",
4849
"Programming Language :: Python :: 3.7",
4950
"Programming Language :: Python :: 3.8",
5051
"Programming Language :: Python :: 3.9",
@@ -64,5 +65,5 @@
6465
"msrest>=0.6.21",
6566
'six>=1.11.0',
6667
],
67-
python_requires=">=3.7",
68+
python_requires=">=3.6",
6869
)

0 commit comments

Comments
 (0)