summaryrefslogtreecommitdiff
path: root/grc/core/generator
diff options
context:
space:
mode:
authorMarcus Müller <mmueller@gnuradio.org>2019-08-10 01:01:56 +0200
committerMartin Braun <martin.braun@ettus.com>2020-01-04 18:48:20 -0800
commit678a7c2ad5db89e0634bfae2b0c9186f1ce63e89 (patch)
treea86eaf74a5ea951cc113f2260e539d6ab1a9e421 /grc/core/generator
parent7d3c207e66f387151c9f0771e1bce3d735fbc507 (diff)
Disable Python 2k
- Update SWIG settings - Update CMake - Remove Python2 references Note: This does not touch a lot of Python files, and many Python files will still work with Python 2 after this commit. However, we won't allow that in our CMake, and the support will be gone too.
Diffstat (limited to 'grc/core/generator')
-rw-r--r--grc/core/generator/flow_graph.py.mako9
1 files changed, 0 insertions, 9 deletions
diff --git a/grc/core/generator/flow_graph.py.mako b/grc/core/generator/flow_graph.py.mako
index 8da3011749..3fb540d8d1 100644
--- a/grc/core/generator/flow_graph.py.mako
+++ b/grc/core/generator/flow_graph.py.mako
@@ -1,15 +1,6 @@
% if not generate_options.startswith('hb'):
-<%
-from sys import version_info
-from gnuradio import eng_notation
-python_version = version_info.major
-%>\
-% if python_version == 2:
-#!/usr/bin/env python2
-% elif python_version == 3:
#!/usr/bin/env python3
% endif
-% endif
# -*- coding: utf-8 -*-
<%def name="indent(code)">${ '\n '.join(str(code).splitlines()) }</%def>
#