Skip to content

Commit b91a069

Browse files
committed
Make sure these are all run as Python3 scripts
1 parent e950c53 commit b91a069

12 files changed

+12
-12
lines changed

solid/examples/animation_example.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#! /usr/bin/env python
1+
#! /usr/bin/env python3
22
import os
33
import sys
44
from math import cos, sin

solid/examples/append_solidpython_code.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#! /usr/bin/env python
1+
#! /usr/bin/env python3
22
# -*- coding: utf-8 -*-
33
import os
44
import sys

solid/examples/basic_geometry.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#! /usr/bin/env python
1+
#! /usr/bin/env python3
22
import os
33
import sys
44

solid/examples/basic_scad_include.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#! /usr/bin/env python
1+
#! /usr/bin/env python3
22
import sys
33
from pathlib import Path
44

solid/examples/bom_scad.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#! /usr/bin/env python
1+
#! /usr/bin/env python3
22

33
# Basic shape with several repeated parts, demonstrating the use of
44
# solid.utils.bill_of_materials()

solid/examples/hole_example.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#! /usr/bin/env python
1+
#! /usr/bin/env python3
22
import os
33
import sys
44

solid/examples/koch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#! /usr/bin/env python
1+
#! /usr/bin/env python3
22
import os
33
import sys
44

solid/examples/mazebox/mazebox.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#! /usr/bin/env python
1+
#! /usr/bin/env python3
22

33
# A-Mazing Box, http://www.thingiverse.com/thing:1481
44
# Copyright (C) 2009 Philipp Tiefenbacher <wizards23@gmail.com>

solid/examples/path_extrude_example.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#! /usr/bin/env python
1+
#! /usr/bin/env python3
22
import os
33
import sys
44
from math import cos, radians, sin

solid/examples/screw_thread_example.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#! /usr/bin/env python
1+
#! /usr/bin/env python3
22
import os
33
import sys
44

0 commit comments

Comments
 (0)