From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mxd2.seznam.cz (mxd2.seznam.cz [IPv6:2a02:598:2::210]) by sourceware.org (Postfix) with ESMTPS id 40FAD3858D3C for ; Tue, 3 May 2022 20:25:20 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 40FAD3858D3C Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=seznam.cz Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=seznam.cz Received: from email.seznam.cz by email-smtpc28b.ng.seznam.cz (email-smtpc28b.ng.seznam.cz [10.23.18.41]) id 35a217df90f4152035a219d1; Tue, 03 May 2022 22:25:14 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=seznam.cz; s=beta; t=1651609514; bh=/6k2/B7TW41y2JOV2nr5ClM01uaKdlCfuOgvbczU3x8=; h=Received:Message-ID:Date:MIME-Version:User-Agent:To:From:Subject: Content-Type:Content-Transfer-Encoding:X-szn-frgn:X-szn-frgc; b=YKtaSf99adrVVsKZUcHeH7tS/BIPWgAQgD31ezK6Vb1YEVoFFF+tiNjhk/6WWXYAO l+SVVtg/9f5oEGZA574+hPHRMwo3f+fwCvvi9S0HzG/NQN8j9MKAkFLAGNhkB4uuWu HSoBhKFwP+aPVSYoegPyatJgadEO7ss+tRhDUY9U= Received: from [192.168.2.5] (brno.ccbr.com [77.240.178.2]) by email-relay9.ng.seznam.cz (Seznam SMTPD 1.3.136) with ESMTP; Tue, 03 May 2022 22:25:09 +0200 (CEST) Message-ID: <525af389-ce91-a079-617c-0311c54585b2@seznam.cz> Date: Tue, 3 May 2022 22:25:02 +0200 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101 Thunderbird/91.8.1 To: cygwin-apps@cygwin.com From: Libor Ukropec Subject: python-future missing python 3.8 and 3.9 support Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-szn-frgn: X-szn-frgc: <0> X-Spam-Status: No, score=-9.6 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, FREEMAIL_FROM, GIT_PATCH_0, RCVD_IN_DNSWL_LOW, SPF_HELO_NONE, SPF_PASS, TXREP, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org X-BeenThere: cygwin-apps@cygwin.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Cygwin package maintainer discussion list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 May 2022 20:25:22 -0000 Hello Jon, maintainers, who is now the maintainer of the python-future - Jon Turney? The python-future supports only python 2.7, 3.6 and 3.7 and these are basically obsolete. I'd like to add support for 3.8 and 3.9 - it should allow me to support `duplicity` package with the latest python (3.9). PYTHON_WHEEL_VERSIONS variable should help. Can I kindly ask someone for the package update? Thank you and regards, Libor diff --git a/python-future.cygport b/python-future.cygport index 3151b74..6f586ae 100644 --- a/python-future.cygport +++ b/python-future.cygport @@ -3,6 +3,7 @@ VERSION=0.18.2  RELEASE=1  ARCH=noarch +PYTHON_WHEEL_VERSIONS="2.7:3.6:3.7:3.8:3.9"  inherit python-wheel  HOMEPAGE="http://python-future.org/" @@ -20,3 +21,4 @@ src_install() {  }  python36_future_CONTENTS+=" usr/bin/*" +python37_future_CONTENTS+=" usr/bin/*"