From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS31976 209.132.180.0/23 X-Spam-Status: No, score=-4.0 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,RCVD_IN_DNSWL_HI,RCVD_IN_MSPIKE_H3, RCVD_IN_MSPIKE_WL,SPF_HELO_NONE,SPF_NONE shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by dcvr.yhbt.net (Postfix) with ESMTP id E85C31F619 for ; Tue, 10 Mar 2020 18:29:27 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726851AbgCJS30 (ORCPT ); Tue, 10 Mar 2020 14:29:26 -0400 Received: from pb-smtp21.pobox.com ([173.228.157.53]:53676 "EHLO pb-smtp21.pobox.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726283AbgCJS30 (ORCPT ); Tue, 10 Mar 2020 14:29:26 -0400 Received: from pb-smtp21.pobox.com (unknown [127.0.0.1]) by pb-smtp21.pobox.com (Postfix) with ESMTP id 5B129BCA9C; Tue, 10 Mar 2020 14:29:26 -0400 (EDT) (envelope-from junio@pobox.com) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=pobox.com; h=from:to:cc :subject:references:date:in-reply-to:message-id:mime-version :content-type:content-transfer-encoding; s=sasl; bh=pl1Sy/ywvneK ly+COKRVxlAtMRA=; b=VPApkCjPkZnTmPxfVBm3raeXhIifUJaVSfuMsAtD557O 49+qTCosTcSDT6zLreJ5awXqNUb1EeJXOzKVsEKpjAbi3N255yHypE/jXizAaBCm AxsumxMeotlNSGbWfZcNTkDyzI0xYtRmea+19xV2C519amBuJo9wSs76gTXvX6U= DomainKey-Signature: a=rsa-sha1; c=nofws; d=pobox.com; h=from:to:cc :subject:references:date:in-reply-to:message-id:mime-version :content-type:content-transfer-encoding; q=dns; s=sasl; b=jIPY8P pVm5qF2rx971bZynI+F4AXXXRZr4InetHaa82prb4COeE7e5vPWEh3OEDC8jm9FA iSBl2ZUlFeXzo9wnmQUQGEfUj+JcWdUibKUzoBzf/zoLY14/ZYn40Syrw6gzyqfS F32tVmduxPdne25OawCdBsOZzkOuHe4seBjCI= Received: from pb-smtp21.sea.icgroup.com (unknown [127.0.0.1]) by pb-smtp21.pobox.com (Postfix) with ESMTP id 52AA6BCA9B; Tue, 10 Mar 2020 14:29:26 -0400 (EDT) (envelope-from junio@pobox.com) Received: from pobox.com (unknown [34.74.119.39]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pb-smtp21.pobox.com (Postfix) with ESMTPSA id 9B981BCA9A; Tue, 10 Mar 2020 14:29:23 -0400 (EDT) (envelope-from junio@pobox.com) From: Junio C Hamano To: SZEDER =?utf-8?Q?G=C3=A1bor?= Cc: git@vger.kernel.org, Yang Zhao , Johannes Schindelin Subject: Re: yz/p4-py3, was Re: What's cooking in git.git (Feb 2020, #03; Wed, 12) References: <20200310173835.GC3122@szeder.dev> Date: Tue, 10 Mar 2020 11:29:21 -0700 In-Reply-To: <20200310173835.GC3122@szeder.dev> ("SZEDER =?utf-8?Q?G=C3=A1?= =?utf-8?Q?bor=22's?= message of "Tue, 10 Mar 2020 18:38:35 +0100") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 X-Pobox-Relay-ID: 10CFFEA2-62FD-11EA-AB1A-8D86F504CC47-77302942!pb-smtp21.pobox.com Content-Transfer-Encoding: quoted-printable Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org SZEDER G=C3=A1bor writes: > Here is the SoB and the wordsmithed commit message. > ... > Subject: [PATCH] ci: use python3 in linux-gcc and osx-gcc and python2 e= lsewhere > > Python2 reached end of life, and we have been preparing our Python > scripts to work with Python3. 'git p4', the main in-tree user of > Python, has just received a number of compatibility updates. Our > other notable Python script 'contrib/svn-fe/svnrdump_sim.py' is only > used in 't9020-remote-svn.sh', and is apparently already compatible > with both Python2 and 3. > > Our CI jobs currently only use Python2. We want to make sure that > these Python scripts do indeed work with Python3, and we also want to > make sure that these scripts keep working with Python2 as well, for > the sake of some older LTS/Enterprise setups. > > Therefore, pick two jobs and use Python3 there, while leaving other > jobs to still stick to Python2 for now. > > Signed-off-by: SZEDER G=C3=A1bor > Signed-off-by: Junio C Hamano Nicely written. Thanks.