`write_text` method exists only on python 3.5.
And travis is using python 3.4 :/
This commit is contained in:
parent
cfb20517a1
commit
220d434b88
|
@ -31,7 +31,8 @@ VERSIONS = {
|
||||||
|
|
||||||
|
|
||||||
def write_manifest(manifest_file, archive_name, target, platform):
|
def write_manifest(manifest_file, archive_name, target, platform):
|
||||||
manifest_file.write_text('''{archive_name}
|
with manifest_file.open(mode='w') as f:
|
||||||
|
f.write('''{archive_name}
|
||||||
***************************
|
***************************
|
||||||
|
|
||||||
Dependencies archive for {target} on platform {platform}
|
Dependencies archive for {target} on platform {platform}
|
||||||
|
|
Loading…
Reference in New Issue