@@ -37,14 +37,14 @@ $ACTIVITIES = [
37
37
'build_docs' ,
38
38
'copy_release_files' ,
39
39
'compare_tar_against_git' ,
40
- 'test_tarball27' ,
41
40
'test_tarball35' ,
42
41
'test_tarball36' ,
43
42
'test_tarball37' ,
44
- 'test_wheel27 ' ,
43
+ 'test_tarball38 ' ,
45
44
'test_wheel35' ,
46
45
'test_wheel36' ,
47
46
'test_wheel37' ,
47
+ 'test_wheel38' ,
48
48
'print_authors' ,
49
49
'sha256' ,
50
50
# 'tag',
@@ -124,10 +124,6 @@ def copy_release_files():
124
124
ls dist
125
125
cp dist / * / root / release /
126
126
127
- @activity (deps = {'source_tarball' })
128
- def test_tarball27 ():
129
- test_tarball ('2.7' )
130
-
131
127
@activity (deps = {'source_tarball' })
132
128
def test_tarball35 ():
133
129
test_tarball ('3.5' )
@@ -140,9 +136,9 @@ def test_tarball36():
140
136
def test_tarball37 ():
141
137
test_tarball ('3.7' )
142
138
143
- @activity (deps = {'wheel ' })
144
- def test_wheel27 ():
145
- test_wheel ( '2.7 ' )
139
+ @activity (deps = {'source_tarball ' })
140
+ def test_tarball38 ():
141
+ test_tarball ( '3.8 ' )
146
142
147
143
@activity (deps = {'wheel' })
148
144
def test_wheel35 ():
@@ -156,6 +152,10 @@ def test_wheel36():
156
152
def test_wheel37 ():
157
153
test_wheel ('3.7' )
158
154
155
+ @activity (deps = {'wheel' })
156
+ def test_wheel38 ():
157
+ test_wheel ('3.8' )
158
+
159
159
@activity (deps = {'source_tarball' })
160
160
def compare_tar_against_git ():
161
161
"""
@@ -245,10 +245,9 @@ def _sha256(print_=True, local=False):
245
245
246
246
@activity (deps = {'mailmap_update' , 'sha256' , 'print_authors' ,
247
247
'source_tarball' , 'wheel' , 'build_docs' ,
248
- 'compare_tar_against_git' , 'test_tarball27' ,
249
- 'test_tarball35' , 'test_tarball36' , 'test_wheel27' ,
250
- 'test_wheel35' , 'test_wheel36' ,
251
- 'test_wheel37' , 'test_sympy' })
248
+ 'compare_tar_against_git' , 'test_tarball35' , 'test_tarball36' ,
249
+ 'test_tarball37' , 'test_tarball38' , 'test_wheel35' ,
250
+ 'test_wheel36' , 'test_wheel37' , 'test_wheel38' , 'test_sympy' })
252
251
def release ():
253
252
pass
254
253
@@ -282,8 +281,8 @@ def test_tarball(py_version):
282
281
Test that the tarball can be unpacked and installed, and that sympy
283
282
imports in the install.
284
283
"""
285
- if py_version not in {'2.7 ' , '3.5 ' , '3.6 ' , '3.7 ' }: # TODO: Add win32
286
- raise ValueError ("release must be one of 2.7, 3.5, 3.6, or 3.7 not %s" % py_version )
284
+ if py_version not in {'3.5 ' , '3.6 ' , '3.7 ' , '3.8 ' }: # TODO: Add win32
285
+ raise ValueError ("release must be one of 3.5, 3.6, 3.7 or 3.8 not %s" % py_version )
287
286
288
287
289
288
with run_in_conda_env (['python=%s' % py_version ], 'test-install-%s' % py_version ):
@@ -300,8 +299,8 @@ def test_wheel(py_version):
300
299
"""
301
300
Test that the wheel can be installed, and that sympy imports in the install.
302
301
"""
303
- if py_version not in {'2.7' , '3.4 ' , '3.5 ' , '3.6 ' , '3.7 ' }: # TODO: Add win32
304
- raise ValueError ("release must be one of 2.7, 3.4 , 3.5 , 3.6, or 3.7 not %s" % py_version )
302
+ if py_version not in {'3.5 ' , '3.6 ' , '3.7 ' , '3.8 ' }: # TODO: Add win32
303
+ raise ValueError ("release must be one of 3.5 , 3.6 , 3.7 or 3.8 not %s" % py_version )
305
304
306
305
307
306
with run_in_conda_env (['python=%s' % py_version ], 'test-install-%s' % py_version ):
@@ -344,7 +343,7 @@ def get_tarball_name(file):
344
343
elif file == 'pdf-orig' :
345
344
name = "sympy-{version}.pdf"
346
345
elif file == 'wheel' :
347
- name = 'sympy-{version}-py2. py3-none-any.whl'
346
+ name = 'sympy-{version}-py3-none-any.whl'
348
347
else :
349
348
raise ValueError (file + " is not a recognized argument" )
350
349
0 commit comments