Re: [python-committers] Thank you Larry Hastings!

2020-10-06 Thread Cameron Simpson
On 05Oct2020 22:14, Tal Einat wrote: >You have my thanks as well, Larry. And mine. - Cameron Simpson -- https://mail.python.org/mailman/listinfo/python-list

Re: [python-committers] Thank you Larry Hastings!

2020-10-06 Thread Nick Coghlan
Thank you, Larry! Cheers, Nick. -- https://mail.python.org/mailman/listinfo/python-list

[poetry] Entry points not converted to scripts

2020-10-06 Thread Loris Bennett
Hi, I'm using poetry and in my pyproject.toml I have [tool.poetry.scripts] batchmon = "batch_monitor.main:main" I build the package with poetry build and then install with pip3 install --target=/home/loris/test/lib/python-3.6/site-packages --install-option="--install-scripts=/home/l

Re: [poetry] Entry points not converted to scripts

2020-10-06 Thread Loris Bennett
"Loris Bennett" writes: > Hi, > > I'm using poetry and in my pyproject.toml I have > > [tool.poetry.scripts] > batchmon = "batch_monitor.main:main" > > I build the package with > > poetry build > > and then install with > > pip3 install --target=/home/loris/test/lib/python-3.6/site-packag

A new project to be started

2020-10-06 Thread Agnese Camellini
Hello to everyone, i don't have a clear idea about who to write about this project, which is only an idea, but it has to be written i think. At first it was just a comparative literature research project, but now that i am more involved in development, it has started to become more like a different

Re: [poetry] Entry points not converted to scripts

2020-10-06 Thread Marco Sulla
I do not know poetry, but it seems it uses virtual environments, so I suppose it's quite more simple if you run poetry shell and install and run all you need. -- https://mail.python.org/mailman/listinfo/python-list

Truncation error

2020-10-06 Thread Meghna Karkera
How is PYTHON better than other software's(MATLAB) in case of truncation or rounding off error. Thanks Meghna -- https://mail.python.org/mailman/listinfo/python-list

Re: Truncation error

2020-10-06 Thread Marco Sulla
If you want to avoid float problems, you can use Decimal: https://docs.python.org/3/library/decimal.html On Wed, 7 Oct 2020 at 05:23, Meghna Karkera wrote: > > How is PYTHON better than other software's(MATLAB) in case of truncation or > rounding off error. > > Thanks > Meghna > -- > https://mai

Re: [poetry] Entry points not converted to scripts

2020-10-06 Thread Loris Bennett
Marco Sulla writes: > I do not know poetry, but it seems it uses virtual environments, so I > suppose it's quite more simple if you run > > poetry shell > > and install and run all you need. As I understand it, that would just create a shell within the virtual environment. That wouldn't help me