Path: csiph.com!fu-berlin.de!uni-berlin.de!not-for-mail From: Anupam Mediratta Newsgroups: comp.lang.python Subject: python 3.5: upgrading smart_open package Date: Mon, 7 Dec 2015 22:45:44 +0530 Lines: 19 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: news.uni-berlin.de 6hbgAi+GIm7GV9g53MsgOQ313zMc5xOT2FAI8oUaswbg== Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.007 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'directions': 0.09; 'issue:': 0.09; 'url:github': 0.09; 'received:209.85.218': 0.10; 'python': 0.10; 'url:)': 0.14; 'subject:python': 0.14; 'migration.': 0.16; 'received:io': 0.16; 'received:psf.io': 0.16; 'url:issues': 0.16; 'machine': 0.21; 'message-id:@mail.gmail.com': 0.27; 'fine': 0.28; 'run': 0.33; 'ubuntu': 0.33; 'open': 0.33; 'running': 0.34; 'received:google.com': 0.35; 'there': 0.36; 'received:209.85': 0.36; 'depends': 0.36; 'to:addr:python-list': 0.36; 'subject:: ': 0.37; 'turn': 0.37; 'thanks': 0.37; 'doing': 0.38; 'received:209': 0.38; 'someone': 0.38; 'sure': 0.39; 'to:addr:python.org': 0.40; 'hello,': 0.40 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=BAL/bTvTRGjhlU7mEqsbcooTgfExzatUOS2tNBbBPHQ=; b=tK5SkZUV3HHP11i3rHw9I1010yJtmRCRGFjkL4M6qhfTQTPODRHNcaIOe6vl1ukrFW YOc9bQ0Xywb4yuQ6AagB6di+l2VoRGgEZUFrKV35GEXUhTomlWhQYImcF3BDc48+3806 4VSz2eW/1LHK05XKv0/e3EvVLUYDS6VdKRcdNh/NziOP8pBs1GF2M5OBP7YH6J2ezVml 9ySr+bm9Q8jO/a55fUBnfp5aCr2QA/A7HBlHR+0NalF6W8+WsXnKJsjGjziO1FxF+Ls0 4L8NxGPFd2Bhgkb+LHUcCYxZIDswGoJH2vnC/rMGIdctZsM5aSOMlNYV4vkAbVbIK02H Rc7A== X-Received: by 10.202.177.193 with SMTP id a184mr21645522oif.46.1449508544270; Mon, 07 Dec 2015 09:15:44 -0800 (PST) X-Mailman-Approved-At: Mon, 07 Dec 2015 12:18:55 -0500 X-Content-Filtered-By: Mailman/MimeDel 2.1.20+ X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.20+ Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Xref: csiph.com comp.lang.python:100092 Hello, I have to use python 3.5 in my use case and one of the packages I use (gensim), in turn uses smart_open (https://github.com/piskvorky/smart_open/) smart_open depends on boto and boto fails on my machine running ubuntu 15.10. So in order for me to be able to run gensim, I need to be able to migrate smart_open from boto to boto3 (boto3 works fine with python 3 and ubuntu 15.10). There is an open github issue: https://github.com/piskvorky/smart_open/issues/43 I am not sure how to go about doing this migration. If someone has any directions or guidelines I will appreciate. Thanks