Skip to content

Commit

Permalink
Enforcing python3.6 execution
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianchifor committed Mar 29, 2018
1 parent e3ef6e2 commit bc3be6a
Show file tree
Hide file tree
Showing 16 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ On Linux you can add `-u $(id -u)` on `docker run` in order for kapitan to not c
For CI/CD usage, check out [ci/](https://github.com/deepmind/kapitan/tree/master/ci)

#### Pip
Kapitan needs Python 3.6+ (it still works with Python 2.7 but support has been removed in v0.12.0).
Kapitan needs Python 3.6 (it still works with Python 2.7 but support has been removed in v0.12.0).

**Install Python 3:**
<br>Linux: `sudo apt-get update && sudo apt-get install -y python3.6-dev python3-pip`
Expand Down
2 changes: 1 addition & 1 deletion kapitan/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python3
#!/usr/bin/env python3.6
#
# Copyright 2018 The Kapitan Authors
#
Expand Down
2 changes: 1 addition & 1 deletion kapitan/__main__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python3
#!/usr/bin/env python3.6
#
# Copyright 2018 The Kapitan Authors
#
Expand Down
2 changes: 1 addition & 1 deletion kapitan/cli.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python3
#!/usr/bin/env python3.6
#
# Copyright 2018 The Kapitan Authors
#
Expand Down
2 changes: 1 addition & 1 deletion kapitan/resources.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python3
#!/usr/bin/env python3.6
#
# Copyright 2018 The Kapitan Authors
#
Expand Down
2 changes: 1 addition & 1 deletion kapitan/secrets.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python3
#!/usr/bin/env python3.6
#
# Copyright 2018 The Kapitan Authors
#
Expand Down
2 changes: 1 addition & 1 deletion kapitan/targets.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python3
#!/usr/bin/env python3.6
#
# Copyright 2018 The Kapitan Authors
#
Expand Down
2 changes: 1 addition & 1 deletion kapitan/utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python3
#!/usr/bin/env python3.6
#
# Copyright 2018 The Kapitan Authors
#
Expand Down
2 changes: 1 addition & 1 deletion kapitan/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python3
#!/usr/bin/env python3.6
#
# Copyright 2018 The Kapitan Authors
#
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python3
#!/usr/bin/env python3.6
#
# Copyright 2018 The Kapitan Authors
#
Expand Down
2 changes: 1 addition & 1 deletion tests/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python3
#!/usr/bin/env python3.6
#
# Copyright 2018 The Kapitan Authors
#
Expand Down
2 changes: 1 addition & 1 deletion tests/test_compile.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python3
#!/usr/bin/env python3.6
#
# Copyright 2018 The Kapitan Authors
#
Expand Down
2 changes: 1 addition & 1 deletion tests/test_inventory.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python3
#!/usr/bin/env python3.6
#
# Copyright 2018 The Kapitan Authors
#
Expand Down
2 changes: 1 addition & 1 deletion tests/test_jinja2.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python3
#!/usr/bin/env python3.6
#
# Copyright 2018 The Kapitan Authors
#
Expand Down
2 changes: 1 addition & 1 deletion tests/test_jsonnet.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python3
#!/usr/bin/env python3.6
#
# Copyright 2018 The Kapitan Authors
#
Expand Down
2 changes: 1 addition & 1 deletion tests/test_secrets.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python3
#!/usr/bin/env python3.6
#
# Copyright 2018 The Kapitan Authors
#
Expand Down

0 comments on commit bc3be6a

Please sign in to comment.