[issue34835] Multiprocessing module update fails with pip3

2018-09-30 Thread Dr_Zaszus


Dr_Zaszus  added the comment:

Thank you! It's clear now.

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue34835] Multiprocessing module update fails with pip3

2018-09-29 Thread Cheryl Sabella


Cheryl Sabella  added the comment:

As Steven said,
> In Python 2.6+ multiprocessing is a std lib module

This means that multiprocessing will be current with the version of Python 3 
that you have installed.  If you're currently on 3.7.0, when 3.7.1 is released 
and you install it, you will get all the updates to multiprocessing (if there 
were any).

--
nosy: +cheryl.sabella

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue34835] Multiprocessing module update fails with pip3

2018-09-28 Thread Dr_Zaszus


Dr_Zaszus  added the comment:

No, you are right, thank you. But just to be clear, how do I update 
multiprocessing in python3 then?

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue34835] Multiprocessing module update fails with pip3

2018-09-28 Thread Steven D'Aprano


Steven D'Aprano  added the comment:

``pip3 search multiprocessing`` says:

multiprocessing (2.6.2.1)- Backport of the multiprocessing package 
to Python 2.4 and 2.5

so you are trying to install a Python 2.4/2.5 package into Python 3.7, which 
naturally cannot work.

In Python 2.6+ multiprocessing is a std lib module and you don't need to use 
pip to install it. I'm not sure if pip works with Python 2.4 or 2.5, but if it 
does, you'll need to use the 2.4/2.5 version of pip to do the update, not pip3.

I'm going to close this as not a bug. If you disagree, please give reasons why 
you think it should be reopened.

--
nosy: +steven.daprano
resolution:  -> not a bug
stage:  -> resolved
status: open -> closed

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue34835] Multiprocessing module update fails with pip3

2018-09-28 Thread Dr_Zaszus


New submission from Dr_Zaszus :

pip3 install --upgrade multiprocessing 

fails with a python2 error in 'setup.py': 
   print 'Macros:'
 ^
   SyntaxError: Missing parentheses in call to 'print'. Did you mean 
print('Macros:')?

--
components: Installation
messages: 326643
nosy: Dr_Zaszus
priority: normal
severity: normal
status: open
title: Multiprocessing module update fails with pip3
versions: Python 3.7

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com