@@ -19,8 +19,8 @@ build_script:
19
19
20
20
- ps : >-
21
21
22
+ # =======================================================================
22
23
# Set up required variables
23
-
24
24
# =======================================================================
25
25
26
26
$env:DT_HARNESS = "AppVeyor"
@@ -52,8 +52,9 @@ build_script:
52
52
}
53
53
54
54
55
- # Print out variable's content
56
55
56
+ # =======================================================================
57
+ # Print out variable's content
57
58
# =======================================================================
58
59
59
60
echo "DEFAULT_PATH = $DEFAULT_PATH"
@@ -75,8 +76,9 @@ build_script:
75
76
echo "DT_BUILD_SUFFIX = $env:DT_BUILD_SUFFIX"
76
77
77
78
78
- # Build and test wheel for Python 3.6
79
79
80
+ # =======================================================================
81
+ # Build and test wheel for Python 3.6
80
82
# =======================================================================
81
83
82
84
$env:PATH = "C:\Python36-x64;C:\Python36-x64\Scripts;$DEFAULT_PATH"
@@ -97,8 +99,8 @@ build_script:
97
99
98
100
99
101
102
+ # =======================================================================
100
103
# Build and test wheel for Python 3.7
101
-
102
104
# =======================================================================
103
105
104
106
$env:PATH = "C:\Python37-x64;C:\Python37-x64\Scripts;$DEFAULT_PATH"
@@ -119,8 +121,8 @@ build_script:
119
121
120
122
121
123
124
+ # =======================================================================
122
125
# Build and test wheel for Python 3.8
123
-
124
126
# =======================================================================
125
127
126
128
$env:PATH = "C:\Python38-x64;C:\Python38-x64\Scripts;$DEFAULT_PATH"
@@ -138,3 +140,25 @@ build_script:
138
140
pip --disable-pip-version-check install $datatable_wheel pytest docutils pandas
139
141
140
142
pytest -ra --maxfail=10 -Werror -vv --showlocals .\tests\
143
+
144
+
145
+
146
+ # =======================================================================
147
+ # Build and test wheel for Python 3.9
148
+ # =======================================================================
149
+
150
+ $env:PATH = "C:\Python39-x64;C:\Python39-x64\Scripts;$DEFAULT_PATH"
151
+
152
+ python ci\ext.py wheel
153
+
154
+ $datatable_wheel = ls dist\*-cp39-*.whl
155
+
156
+ echo "----- build_info 3.9 ---------------------------------------------"
157
+
158
+ cat src/datatable/_build_info.py
159
+
160
+ echo "------------------------------------------------------------------"
161
+
162
+ pip --disable-pip-version-check install $datatable_wheel pytest docutils pandas
163
+
164
+ pytest -ra --maxfail=10 -Werror -vv --showlocals .\tests\
0 commit comments