-
Notifications
You must be signed in to change notification settings - Fork 17
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
updating numpy + vtk functions #46
Conversation
Adding vc dep for windows
Adding compilers in host
Adding setuptools in host
trying vs2019 deps
revert
Trying with pip for windows
revert
removing setup.py build_ext step
preserve_egg_dir to false
Adding setuptools in host
Preserving egg because why not
Excellent. |
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.
This sound great!
Thank you for modernize the code
Just remove cython if not used anymore
- {{ PYTHON }} -m pip install . -vv | ||
|
||
requirements: | ||
host: | ||
- python | ||
- setuptools | ||
- numpy | ||
- scipy | ||
- cython |
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.
If you completly remove cython, remove it from the deps too
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.
I do not think that we want to remove cython, as we want the two c extensions for acceleration !
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.
I misunderstood some commit. I was a little bit afraid...
The vtkmodules is included in the vtk package. As per the vtk documentation: The 'vtk.py' module is obsolete and is only provided for backwards compatibility. When you import vtk, this module actually provides you with the 'vtkmodules.all' module via some internal trickery:
|
Hi !
I updated some of the imports of vtk modules which were outdated and also made some updates of numpy functions to be compatible with 2.0 and 1.x.
For the compatibility with numpy 2.0 we still need to wait for the skan package to be updated.
Also with @christian34 we investigated the problems we had with the CI and they are now fixed.