Skip to content

Commit da3e144

Browse files
committed
Removing future from requirements'
1 parent c1a4524 commit da3e144

5 files changed

Lines changed: 0 additions & 7 deletions

File tree

matlab2python.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#!/usr/bin/env python
2-
from __future__ import absolute_import
32
import sys
43
import argparse
54
from matlabparser import parser as mparser

requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
numpy
22
ply
33
networkx
4-
future
54
matplotlib
65
pytest
76
scipy

smop/main.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
# SMOP -- Simple Matlab/Octave to Python compiler
22
# Copyright 2011-2016 Victor Leikehman
3-
4-
from __future__ import print_function
5-
63
import py_compile
74
import tempfile
85
import fnmatch

smop/node.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# SMOP compiler -- Simple Matlab/Octave to Python compiler
22
# Copyright 2011-2013 Victor Leikehman
33

4-
from __future__ import print_function
54
from collections import namedtuple
65
import copy,sys,inspect
76

smop/resolve.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
It is used in if_stmt, for_stmt, and while_stmt.
1919
"""
2020

21-
from __future__ import print_function
2221
import copy
2322
import networkx as nx
2423

0 commit comments

Comments
 (0)