Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!news.albasani.net!rt.uk.eu.org!newsfeed.xs4all.nl!newsfeed4a.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.008 X-Spam-Evidence: '*H*': 0.98; '*S*': 0.00; 'say,': 0.05; 'subject:Python': 0.06; 'versions.': 0.07; 'cc:addr:python-list': 0.11; 'python': 0.11; '2.7': 0.14; '3.3,': 0.16; 'fine.': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'know;': 0.16; 'presume': 0.16; 'pypi.': 0.16; 'readme.rst': 0.16; 'wrote:': 0.18; 'do.': 0.18; 'example': 0.22; 'cc:addr:python.org': 0.22; 'install': 0.23; 'mon,': 0.24; 'versions': 0.24; 'environment': 0.24; 'cc:2**0': 0.24; 'header :In-Reply-To:1': 0.27; 'testing': 0.29; 'message- id:@mail.gmail.com': 0.30; 'work.': 0.31; "they'll": 0.31; 'with,': 0.31; 'file': 0.32; 'probably': 0.32; 'test': 0.35; 'but': 0.35; 'received:google.com': 0.35; 'there': 0.35; '14,': 0.36; 'example,': 0.37; 'two': 0.37; 'pm,': 0.38; 'sure': 0.39; "you'll": 0.62; 'more': 0.64; 'jul': 0.74; '3.4': 0.84; 'latest,': 0.84; 'subject:Client': 0.84; 'try,': 0.84; 'to:none': 0.92 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:cc :content-type; bh=nekDixfkNYLAzu1hD/48C1ZlvGa5vLJR9ZHd8mHJqwE=; b=EE+pspZjTXg0OG+gqhJeGu0PDI4ghTBx2/CZam7v6OdTKl+ceeIwpGL/JBDLDeNc6f aYclJ9Jhy7GPb7Z7jJe3f2O96DESIq56hoMKj5vZa+CJ0UzALOHmXND8UAUMTfnQexz6 j6Rjoc5yNOdldBcMCDU7q1Qv+9mlLTBBgJO/S+X635bZRdjHtTuUAbUD32RiW2MREgFd gZXztojmrL4wjRpq9ahS71DXm+swvwdjtBSwUyEIpBVnZT4WcxjQ2qLaP0iz5lG1aSIS tRdqQIGVzHB6xnsuReOuCAZ8aVjWdM7TAtAKKkSh7PAWtSeYQUA5l5YDbKXUwNjYfJt6 BOeg== MIME-Version: 1.0 X-Received: by 10.52.17.129 with SMTP id o1mr12204269vdd.0.1405309889110; Sun, 13 Jul 2014 20:51:29 -0700 (PDT) In-Reply-To: <6e3b7633-9c3b-4b3f-8337-6712edeed2c2@googlegroups.com> References: <5a2ece49-1b5a-41a5-99f1-e2c0e1bf96b8@googlegroups.com> <6e3b7633-9c3b-4b3f-8337-6712edeed2c2@googlegroups.com> Date: Mon, 14 Jul 2014 13:51:29 +1000 Subject: Re: Twitter Client on Terminal by Python From: Chris Angelico Cc: "python-list@python.org" Content-Type: text/plain; charset=UTF-8 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 17 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1405309892 news.xs4all.nl 2856 [2001:888:2000:d::a6]:54472 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:74413 On Mon, Jul 14, 2014 at 12:18 PM, Orakaro wrote: > I use README.md for Github and README.rst for PyPi. Is there a way to use only one file for both sites ? Ah. I don't know; check the docs for one or the other and see what they'll do. > I tested my package on Python 2.7 and Python 3.4 But do I have to install all Python 2.6, Python 3.* in my system and test in all environment for sure ? You can state that it supports 2.7 and 3.4, without testing on any other versions. Those are the two current versions - my example was showing support for more than just the one latest, but that was just an example, nothing more. When Python 3.5 comes out, you'll probably want to test on that (and then say "supports 2.7 and 3.4+"), but at the moment, "2.7 and 3.4" is fine. If people want to use this with, say, 3.3, then they're welcome to try, but they'll know not to presume that it'll work. ChrisA