[Numpy-discussion] help

2024-10-02 Thread Usha Gayatri via NumPy-Discussion
I am working on a Jupyter notebook in Anaconda Navigator. I have done some projects in 2021, 2022,2023 and 2024. When I run my old project which was created in 2021. it is giving errors.I am just testing import numpy as np import pandas as pd which is giving an error. File E:\anaconda3\Lib\site-pa

[Numpy-discussion] Re: What should remain on PyPi

2024-10-02 Thread Ralf Gommers via NumPy-Discussion
On Tue, Sep 3, 2024 at 7:53 PM Peter Cock via NumPy-Discussion < numpy-discussion@python.org> wrote: > If I recall correctly, people were building against the Numpy 2.0.0 > release candidates in particular. In hindsight keeping those on PyPI might > have been better. A formal NEP/SPEC seems a good

[Numpy-discussion] Re: help

2024-10-02 Thread matti picus via NumPy-Discussion
Maybe python is picking up some other versions of pandas and numpy. What do you get when you check like this import numpy import pandas print(f”{numpy.__version__=}”) print(f”{pandas.__version__=}”) Matti On Wed, 2 Oct 2024 at 15:13, Usha Gayatri via NumPy-Discussion < numpy-discussion@python.or

[Numpy-discussion] Re: help

2024-10-02 Thread Andrew Nelson via NumPy-Discussion
On Wed, 2 Oct 2024 at 22:09, Usha Gayatri via NumPy-Discussion < numpy-discussion@python.org> wrote: > I am working on a Jupyter notebook in Anaconda Navigator. I have done some > projects in 2021, 2022,2023 and 2024. When I run my old project which was > created in 2021. it is giving errors.I am