@autorest/python 5.12.1 → 5.12.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/ChangeLog.md +14 -0
- package/package.json +3 -2
- package/requirements.txt +14 -0
package/ChangeLog.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
### 2022-01-11 - 5.12.2
|
|
4
|
+
|
|
5
|
+
| Library | Min Version
|
|
6
|
+
| --------------- | -------
|
|
7
|
+
|`@autorest/core` | `3.6.2`
|
|
8
|
+
|`@autorest/modelerfour` | `4.19.1`
|
|
9
|
+
|`azure-core` dep of generated code | `1.20.1`
|
|
10
|
+
|`msrest` dep of generated code | `0.6.21`
|
|
11
|
+
|`azure-mgmt-core` dep of generated code (If generating mgmt plane code) | `1.3.0`
|
|
12
|
+
|
|
13
|
+
**Bug Fixes**
|
|
14
|
+
|
|
15
|
+
- Fix installation of autorest python package #1118
|
|
16
|
+
|
|
3
17
|
### 2022-01-10 - 5.12.1
|
|
4
18
|
|
|
5
19
|
| Library | Min Version
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@autorest/python",
|
|
3
|
-
"version": "5.12.
|
|
3
|
+
"version": "5.12.2",
|
|
4
4
|
"description": "The Python extension for generators in AutoRest.",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"prepare": "node run-python3.js prepare.py",
|
|
@@ -37,6 +37,7 @@
|
|
|
37
37
|
"prepare.py",
|
|
38
38
|
"start.py",
|
|
39
39
|
"venvtools.py",
|
|
40
|
-
"run-python3.js"
|
|
40
|
+
"run-python3.js",
|
|
41
|
+
"requirements.txt"
|
|
41
42
|
]
|
|
42
43
|
}
|
package/requirements.txt
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
black==21.12b0
|
|
2
|
+
click==8.0.3
|
|
3
|
+
docutils==0.18.1
|
|
4
|
+
Jinja2==3.0.3
|
|
5
|
+
json-rpc==1.13.0
|
|
6
|
+
m2r==0.2.1
|
|
7
|
+
MarkupSafe==2.0.1
|
|
8
|
+
mistune==0.8.4
|
|
9
|
+
mypy-extensions==0.4.3
|
|
10
|
+
pathspec==0.9.0
|
|
11
|
+
platformdirs==2.4.0
|
|
12
|
+
PyYAML==6.0
|
|
13
|
+
tomli==1.2.2
|
|
14
|
+
typing-extensions==4.0.1
|