Skip to content

Commit

Permalink
debug 32-bit issue
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAugspurger committed Dec 5, 2018
1 parent a69dbb3 commit 911a2da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pandas/tests/extension/test_sparse.py
Expand Up @@ -10,9 +10,9 @@

def make_data(fill_value):
if np.isnan(fill_value):
data = np.random.uniform(size=100)
data = np.random.uniform(size=100).astype('float64')
else:
data = np.random.randint(1, 100, size=100)
data = np.random.randint(1, 100, size=100, dtype='int64')
if data[0] == data[1]:
data[0] += 1

Expand Down

0 comments on commit 911a2da

Please sign in to comment.