@azure-tools/typespec-python 0.43.0 → 0.44.0
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azure-tools/typespec-python",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.44.0",
|
|
4
4
|
"author": "Microsoft Corporation",
|
|
5
5
|
"description": "TypeSpec emitter for Python SDKs",
|
|
6
6
|
"homepage": "https://github.com/Azure/autorest.python",
|
|
@@ -46,13 +46,13 @@
|
|
|
46
46
|
"@azure-tools/typespec-azure-resource-manager": ">=0.54.0 <1.0.0",
|
|
47
47
|
"@azure-tools/typespec-autorest": ">=0.54.0 <1.0.0",
|
|
48
48
|
"@azure-tools/typespec-azure-rulesets": ">=0.54.0 <1.0.0",
|
|
49
|
-
"@azure-tools/typespec-client-generator-core": ">=0.54.
|
|
49
|
+
"@azure-tools/typespec-client-generator-core": ">=0.54.2 <1.0.0"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
52
|
"js-yaml": "~4.1.0",
|
|
53
53
|
"semver": "~7.6.2",
|
|
54
54
|
"tsx": "~4.19.1",
|
|
55
|
-
"@typespec/http-client-python": "~0.
|
|
55
|
+
"@typespec/http-client-python": "~0.11.1",
|
|
56
56
|
"fs-extra": "~11.2.0"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
@@ -69,9 +69,9 @@
|
|
|
69
69
|
"@azure-tools/typespec-azure-core": "~0.54.0",
|
|
70
70
|
"@azure-tools/typespec-azure-rulesets": "~0.54.0",
|
|
71
71
|
"@azure-tools/typespec-autorest": "~0.54.0",
|
|
72
|
-
"@azure-tools/typespec-client-generator-core": "~0.54.
|
|
73
|
-
"@azure-tools/azure-http-specs": "0.1.0-alpha.
|
|
74
|
-
"@typespec/http-specs": "0.1.0-alpha.
|
|
72
|
+
"@azure-tools/typespec-client-generator-core": "~0.54.2",
|
|
73
|
+
"@azure-tools/azure-http-specs": "0.1.0-alpha.14",
|
|
74
|
+
"@typespec/http-specs": "0.1.0-alpha.19",
|
|
75
75
|
"@types/js-yaml": "~4.0.5",
|
|
76
76
|
"@types/node": "~22.13.14",
|
|
77
77
|
"@types/yargs": "~17.0.33",
|
|
Binary file
|
package/scripts/install.py
CHANGED
package/scripts/run_tsp.py
CHANGED
|
@@ -7,7 +7,7 @@ import sys
|
|
|
7
7
|
import venv
|
|
8
8
|
import logging
|
|
9
9
|
from pathlib import Path
|
|
10
|
-
from pygen import preprocess, codegen
|
|
10
|
+
from pygen import preprocess, codegen
|
|
11
11
|
from pygen.utils import parse_args
|
|
12
12
|
|
|
13
13
|
_ROOT_DIR = Path(__file__).parent.parent
|
|
@@ -38,4 +38,3 @@ if __name__ == "__main__":
|
|
|
38
38
|
args, unknown_args = parse_args()
|
|
39
39
|
preprocess.PreProcessPlugin(output_folder=args.output_folder, cadl_file=args.cadl_file, **unknown_args).process()
|
|
40
40
|
codegen.CodeGenerator(output_folder=args.output_folder, cadl_file=args.cadl_file, **unknown_args).process()
|
|
41
|
-
black.BlackScriptPlugin(output_folder=args.output_folder, **unknown_args).process()
|