From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pj1-x102e.google.com (mail-pj1-x102e.google.com [IPv6:2607:f8b0:4864:20::102e]) by sourceware.org (Postfix) with ESMTPS id B28583857030 for ; Mon, 27 Jul 2020 16:19:00 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org B28583857030 Received: by mail-pj1-x102e.google.com with SMTP id a9so9738753pjd.3 for ; Mon, 27 Jul 2020 09:19:00 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:to:from:subject:message-id:date:user-agent :mime-version:content-language:content-transfer-encoding; bh=WFZXGv6Wf5p8CrYH2LHkqMkEGa4snJUGD1vyTtnQgL4=; b=b6CPsOecc9vJ8/Wpt0HyEF0cibgZfJOrBLoiDqXytWkJRQZFilcQuFh5L4tmW+TOyx mkaQAhTOf5o03uJH0OSaHCk/b3LUfPKD2rkqv8i3bTF2TRXCS9QKfgX0iKv2/HVP3rNn GJ1za1dVBrlPrPTCpNaCzNsNd3hpNnQHoSE02EvKS/9iDS+8GIqi7sopbP1kGuJoX3Lt HnDvqBGzeVoYEc014GYNENDjQtx79zWvj6jF1OX6kutVxAQJFnON4uvc34Qso16rQIPT YuLfB16cweaOAxoIqG0xYQsdsl8KoP3Jp+NdXlgiTj8MSnYA+48pYOv2UdK2V4piv9dV mXFw== X-Gm-Message-State: AOAM531rQcqQ3mPhrDtj5LiloZetzmo+6qImsAJXoSdZGPZ6ApgUp3T6 V2bfywMSov9A8yTE6chDLuQ= X-Google-Smtp-Source: ABdhPJxMZbvdnrHDMbWP85/UQCQYNEvr1OsxA1hg15pmYC0TY0Dr7/7YcLuuYJTLzxX52I/nCWB4uA== X-Received: by 2002:a17:90a:cc:: with SMTP id v12mr81131pjd.96.1595866739863; Mon, 27 Jul 2020 09:18:59 -0700 (PDT) Received: from [192.168.1.20] (i222-151-3-223.s42.a014.ap.plala.or.jp. [222.151.3.223]) by smtp.gmail.com with ESMTPSA id i125sm15789819pgd.21.2020.07.27.09.18.58 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Mon, 27 Jul 2020 09:18:59 -0700 (PDT) To: cygwin@cygwin.com From: ggl329 Subject: Dependency problem of ipython 7.16.1-1 Message-ID: <0a5e4961-3772-c93f-c05f-5bd9a5a2edec@gmail.com> Date: Tue, 28 Jul 2020 01:18:55 +0900 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:68.0) Gecko/20100101 Thunderbird/68.10.0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-1.0 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, FREEMAIL_ENVFROM_END_DIGIT, FREEMAIL_FROM, KAM_NUMSUBJECT, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=no autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: cygwin@cygwin.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: General Cygwin discussions and problem reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 27 Jul 2020 16:19:02 -0000 Hi all, Recently, I upgraded python36-ipython to 7.16.1-1 and got an error shown below. The upgraded ipython seems to depend on backcall module (https://github.com/takluyver/backcall). But cygwin doesn't have python-backcall package. Is there anyone who will provide python-backcall package? $ ipython3.6 Traceback (most recent call last): File "/usr/bin/ipython3.6", line 5, in from IPython import start_ipython File "/usr/lib/python3.6/site-packages/IPython/__init__.py", line 56, in from .terminal.embed import embed File "/usr/lib/python3.6/site-packages/IPython/terminal/embed.py", line 15, in from IPython.core.interactiveshell import DummyMod, InteractiveShell File "/usr/lib/python3.6/site-packages/IPython/core/interactiveshell.py", line 43, in from IPython.core.events import EventManager, available_events File "/usr/lib/python3.6/site-packages/IPython/core/events.py", line 16, in from backcall import callback_prototype ModuleNotFoundError: No module named 'backcall' -- ggl329