check dependencies of a pypi package

2020-09-26 Thread kamaraju kusumanchi
How can I check the dependencies of a pypi package without installing it? For example, looking at the pandas 1.1.2 package in https://pypi.org/project/pandas/1.1.2/, is there a way to determine the numpy version it depends upon without installing the package? thanks raju -- Kamaraju S Kusumanchi

Re: Use of a variable in parent loop

2020-09-26 Thread 2QdxY4RzWzUUiLuE
On 2020-09-27 at 03:36:48 +0800, Stephane Tougard via Python-list wrote: > Anyway, there's no perfect language, the point is to know it ... Yes. > ... It's just confusing I still have to declare or not declare an > object depending on the action I have with it. As ChrisA noted, Python almost a

Re: Use of a variable in parent loop

2020-09-26 Thread Stephane Tougard via Python-list
On 2020-09-26, Terry Reedy wrote: > Noise. Only 'pass' when there is no other code. Why ? I use pass and continue each time to break a if or a for because emacs understands it and do not break the indentation. Is there any other instruction to end a if than pass and ensure Emacs does not break

pipenv picks up bad paths and crashes

2020-09-26 Thread Rhett Prince
pipenv is a bad program it conflicts with anaconda. I removed anaconda and it still crashes. also, I repaired my python 3.8 installation uninstalled and reinstalled pipenv and it still picks up paths from anaconda anaconda sucks too. see below Administrator@rc

Re: celery multi celery.exceptions.TimeoutError: The operation timed out

2020-09-26 Thread iMath
在 2020年9月21日星期一 UTC+8 下午8:02:44, 写道: > Op 21-09-2020 om 12:14 schreef iMath: > > Asked 3 days ago at > > https://stackoverflow.com/questions/63951696/celery-multi-celery-exceptions-timeouterror-the-operation-timed-out > > > > > > But nobody helped yet, anyone ? > > > Did you see > https://sta

Re: Use of a variable in parent loop

2020-09-26 Thread Terry Reedy
On 9/26/2020 12:43 AM, Stephane Tougard via Python-list wrote: [Example of Perl block scoping.] ===PYTHON=== #!/usr/local/bin/python if 4 == 4: if True: # Only usefel in Python if you might might to switch to False. name = "Stephane" print(name) pass Noise. Only 'pass' wh

Re: Use of a variable in parent loop

2020-09-26 Thread Chris Angelico
On Sat, Sep 26, 2020 at 4:01 PM Stephane Tougard via Python-list wrote: > > > Hello All, > > I've been working with Perl a long time and recently started to use > Python. I've been surprised by one behavior of Python. > > In Perl: > > ===PERL=== > #!/usr/pkg/bin/perl > > use strict; > > if(4 == 4)

Re: Use of a variable in parent loop

2020-09-26 Thread Joel Goldstick
On Sat, Sep 26, 2020 at 2:01 AM Stephane Tougard via Python-list wrote: > > > Hello All, > > I've been working with Perl a long time and recently started to use > Python. I've been surprised by one behavior of Python. > > In Perl: > > ===PERL=== > #!/usr/pkg/bin/perl > > use strict; > > if(4 == 4)