Closed gddickinson closed 1 year ago
Hi Kyle - trying a pull request to master to fix a save error when using py v3.11. Let me know if I have done everything ok!
This looks good. Looks like there are 4 references in the code to np.bool. Want to replace them all in one go?
Great! Yes, I think it is safe to replace all 4 np.bool occurrences at once. We should probably also replace other deprecated numpy datatypes ( np.int etc). This is probably safest done on a case-by-case basis though...
On Mon, Oct 30, 2023 at 1:36 PM Kyle Ellefsen @.***> wrote:
This looks good. Looks like there are 4 references https://github.com/search?q=repo%3Aflika-org%2Fflika%20%22np.bool%22&type=code in the code to np.bool. Want to replace them all in one go?
— Reply to this email directly, view it on GitHub https://github.com/flika-org/flika/pull/59#issuecomment-1785824177, or unsubscribe https://github.com/notifications/unsubscribe-auth/ABY57Y6A76NLB2ZASPMWHKLYB7XTRAVCNFSM6AAAAAA6WO663WVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTOOBVHAZDIMJXG4 . You are receiving this because you authored the thread.Message ID: @.***>
All 4 np.bool replaced with bool
Hi Kyle,
When I try to install flika using pip I get the previous version when np.bool is used. Is there something I (or you) need to do to update this? It looked to me like the changes I had made were merged with the master... Not sure if pip definitions also need to be updated - or how to do this.
cheers, g
On Mon, Oct 30, 2023 at 2:00 PM George Dickinson @.***> wrote:
Great! Yes, I think it is safe to replace all 4 np.bool occurrences at once. We should probably also replace other deprecated numpy datatypes ( np.int etc). This is probably safest done on a case-by-case basis though...
On Mon, Oct 30, 2023 at 1:36 PM Kyle Ellefsen @.***> wrote:
This looks good. Looks like there are 4 references https://github.com/search?q=repo%3Aflika-org%2Fflika%20%22np.bool%22&type=code in the code to np.bool. Want to replace them all in one go?
— Reply to this email directly, view it on GitHub https://github.com/flika-org/flika/pull/59#issuecomment-1785824177, or unsubscribe https://github.com/notifications/unsubscribe-auth/ABY57Y6A76NLB2ZASPMWHKLYB7XTRAVCNFSM6AAAAAA6WO663WVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTOOBVHAZDIMJXG4 . You are receiving this because you authored the thread.Message ID: @.***>
There are two main ways to get flika onto a computer: using github or using pip. pip grabs the package from pypi.
When I make a change to flika that I'd like to put on pypi, I do the following:
Currently only Brett and I are collaborators for flika on pypi. If you make an account I can add you so you have upload privileges.
Got it! Thanks Kyle! I made a PyPi account and will look through the PyPI/Twine tutorials.
cheers, g
On Wed, Nov 1, 2023 at 11:42 AM Kyle Ellefsen @.***> wrote:
There are two main ways to get flika onto a computer: using github or using pip. pip grabs the package from pypi https://pypi.org/project/flika/.
When I make a change to flika that I'd like to put on pypi, I do the following:
- increment the version number in https://github.com/flika-org/flika/blob/master/flika/version.py
- commit that version increment change to master
- Upload the change using twine https://twine.readthedocs.io/en/stable/#using-twine.
Currently only Brett and I are collaborators https://pypi.org/manage/project/flika/collaboration/ for flika on pypi. If you make an account I can add you so you have upload privileges.
— Reply to this email directly, view it on GitHub https://github.com/flika-org/flika/pull/59#issuecomment-1789291891, or unsubscribe https://github.com/notifications/unsubscribe-auth/ABY57Y4L65GYNQHVFJRWXFLYCJ3YNAVCNFSM6AAAAAA6WO663WVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTOOBZGI4TCOBZGE . You are receiving this because you modified the open/close state.Message ID: @.***>
Replaced np.bool with builtin bool as np.bool deprecated since NumPy v1.2. This should fix file save error when FLIKA run on py v3.11