-
-
Notifications
You must be signed in to change notification settings - Fork 19.3k
COMPAT: some compatibility fixes with new numpies #13010
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -848,11 +848,11 @@ def test_append(self): | |
|
|
||
| # uints - test storage of uints | ||
| uint_data = DataFrame({ | ||
| 'u08': Series(np.random.random_integers(0, high=255, size=5), | ||
| 'u08': Series(np.random.randint(0, high=255, size=5), | ||
| dtype=np.uint8), | ||
| 'u16': Series(np.random.random_integers(0, high=65535, size=5), | ||
| 'u16': Series(np.random.randint(0, high=65535, size=5), | ||
| dtype=np.uint16), | ||
| 'u32': Series(np.random.random_integers(0, high=2**30, size=5), | ||
| 'u32': Series(np.random.randint(0, high=2**30, size=5), | ||
| dtype=np.uint32), | ||
|
||
| 'u64': Series([2**58, 2**59, 2**60, 2**61, 2**62], | ||
| dtype=np.uint64)}, index=np.arange(5)) | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You're missing one more in this file. Just search for
= e.message(deprecated) in your changed file and get rid of them.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
hmm