Skip to content

Commit c725138

Browse files
committed
Attempt 2 to make windows happy with int64 random seed type
1 parent ea2599d commit c725138

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

axelrod/random_.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def randint(self, *args, **kwargs):
2626
return self._random.randint(*args, **kwargs)
2727

2828
def random_seed_int(self):
29-
return self.randint(0, 2**32-1, dtype='u8')
29+
return self.randint(0, 2**32-1, dtype='int64')
3030

3131
def choice(self, *args, **kwargs):
3232
return self._random.choice(*args, **kwargs)

0 commit comments

Comments
 (0)