Skip to content

Commit 2a413c6

Browse files
authored
ci: replace python-dev with python-dev-is-python3 and update python scripts to use python 3 (crosswire#1150)
1 parent 8146004 commit 2a413c6

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.ci-build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ requires:
6666
- libxml2-dev
6767
- libxml2-utils
6868
- make
69-
- python-dev
69+
- python-dev-is-python3
7070
- swig
7171
- uuid-dev
7272
- uuid-runtime

help/C/figures/index_all_pngs.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22

33
#Copyright (c) 2009 Simon Meers
44

@@ -84,5 +84,5 @@ def y_or_n():
8484
p = Popen("gimp -ib -", shell=True, stdin=t)
8585
p.communicate() #wait for completion
8686
else:
87-
print "Conversion aborted."
87+
print("Conversion aborted.")
8888

src/examples/ipc_client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22

33
#Copyright (c) 2009 Matthew Talbert
44

ui/wscript_build

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#! /usr/bin/env python
1+
#! /usr/bin/env python3
22
# encoding: utf-8
33

44
bld.install_files('${PACKAGE_DATA_DIR}', '*.png')

0 commit comments

Comments
 (0)