Skip to content

Commit

Permalink
ci: replace python-dev with python-dev-is-python3 and update python s…
Browse files Browse the repository at this point in the history
…cripts to use python 3 (#1150)
  • Loading branch information
Phyrik authored Jun 3, 2024
1 parent 8146004 commit 2a413c6
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ requires:
- libxml2-dev
- libxml2-utils
- make
- python-dev
- python-dev-is-python3
- swig
- uuid-dev
- uuid-runtime
Expand Down
4 changes: 2 additions & 2 deletions help/C/figures/index_all_pngs.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

#Copyright (c) 2009 Simon Meers

Expand Down Expand Up @@ -84,5 +84,5 @@ def y_or_n():
p = Popen("gimp -ib -", shell=True, stdin=t)
p.communicate() #wait for completion
else:
print "Conversion aborted."
print("Conversion aborted.")

2 changes: 1 addition & 1 deletion src/examples/ipc_client.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

#Copyright (c) 2009 Matthew Talbert

Expand Down
2 changes: 1 addition & 1 deletion ui/wscript_build
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#! /usr/bin/env python3
# encoding: utf-8

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

0 comments on commit 2a413c6

Please sign in to comment.