blob: 7df2871aa219baaa2f70a34471a4fa5b81fbd69d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
--- a/setup.py 2021-12-29 22:44:09.924917943 +0800
+++ b/setup.py 2021-12-29 22:49:16.216878004 +0800
@@ -355,7 +355,7 @@
if not enable_training:
classifiers.extend(["Operating System :: Microsoft :: Windows", "Operating System :: MacOS"])
-if enable_training:
+if True:
packages.extend(
[
"onnxruntime.training",
@@ -373,6 +373,7 @@
'*.cuh',
'*.h'
]
+if enable_training:
requirements_file = "requirements-training.txt"
# with training, we want to follow this naming convention:
# stable:
|