Skip to content

Commit

Permalink
Fixing the test dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
twheys committed Aug 17, 2016
1 parent 7771625 commit 9db073b
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
4 changes: 0 additions & 4 deletions fireant/slicer/transformers/datatables.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
# coding: utf-8

# This import is necessary since Pandas uses it in some places
from __future__ import unicode_literals

import numpy as np
import pandas as pd
from builtins import str
Expand Down
2 changes: 1 addition & 1 deletion fireant/tests/slicer/transformers/test_datatables.py
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ def test_nan_data_point(self):

def test_str_data_point(self):
result = datatables._format_data_point(u'abc')
self.assertEqual(u'abc', result)
self.assertEqual('abc', result)

def test_int64_data_point(self):
# Needs to be cast to python int
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def readme():
'pypika==0.0.26'
],
tests_require=[
'mock',
'mock', 'vertica-python>=0.6'
],
extras_require={
'vertica': ['vertica-python>=0.6'],
Expand Down

0 comments on commit 9db073b

Please sign in to comment.