-
Notifications
You must be signed in to change notification settings - Fork 358
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
Remove the upperbound for numpy. #2166
Conversation
Codecov Report
@@ Coverage Diff @@
## master #2166 +/- ##
==========================================
- Coverage 95.36% 95.34% -0.02%
==========================================
Files 60 60
Lines 13707 13711 +4
==========================================
+ Hits 13071 13073 +2
- Misses 636 638 +2
Continue to review full report at Codecov.
|
Thanks! merging. |
@ueshin shall we remove the upperbound in OSS spark too? https://github.com/apache/spark/blob/master/python/setup.py#L272 |
Yes, sounds good. I'll submit a PR soon. |
FYI: apache/spark#32908 |
Removed the upperbound for
numpy
.numpy>=1.20
only works withpyspark>=3.1
, so show a warning whennumpy>=1.20
withpyspark<3.1
together.