Skip to content

Commit 750f73c

Browse files
committed
Specify random seed type in attempt to make Windows happy
1 parent 19b36f7 commit 750f73c

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)
29+
return self.randint(0, 2**32-1, dtype='u8')
3030

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

0 commit comments

Comments
 (0)