-
Notifications
You must be signed in to change notification settings - Fork 52
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
Use list instead of array #1050
Conversation
Numpy does not seam to support anymore non homogeneous arrays (for shapes at least). We don't need an array, so we should rather use lists.
Co-authored-by: Fabrice Normandin <fabrice.normandin@gmail.com>
The issue here is dependencies using the deprecated np.object. The dependency is pymoo pymoo actually updated on their latest version https://github.com/anyoptimization/pymoo/blob/4dae90a8e1c10d0f858b391903d39b0ff365fd59/examples/algorithms/moo/nsga2/nsga2_custom.py#L35 |
926c5eb
to
3f1576e
Compare
82120ea
to
f5a214a
Compare
640e25d
to
ba00073
Compare
Numpy does not seam to support anymore non homogeneous arrays (for shapes at least). We don't need an array, so we should rather use lists.