From f613bfc13ee5e6bfe26057d9d106340ecba4c9e7 Mon Sep 17 00:00:00 2001 From: regro-cf-autotick-bot <36490558+regro-cf-autotick-bot@users.noreply.github.com> Date: Sun, 9 Apr 2023 23:02:45 -0500 Subject: [PATCH] [bot-automerge] twilio v8.0.0 (#94) * updated v8.0.0 * Drop py36 * Add aiohttp, aiohttp-retry * Add `asyncio` * Drop whitespace * Drop `asyncio` * Comment out `pip check` `asyncio` isn't distributed for Python 3.7+, but for some reason included in the dependencies for `twilio` 8.0.0. This is causing issues. https://github.com/twilio/twilio-python/issues/708 * Add comment --------- Co-authored-by: Setu Shah --- recipe/meta.yaml | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index c44409b..f93d702 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -1,5 +1,5 @@ {% set name = "twilio" %} -{% set version = "7.17.0" %} +{% set version = "8.0.0" %} package: name: {{ name }} @@ -7,7 +7,7 @@ package: source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz - sha256: f43de32cdc27f8853bb02ab0b8703a487beffbb9dcc8118398b6757e1376e6ed + sha256: ee2eaaf24df4361200f18d04e14b9937de2c31f3322dd739491590d8ff7196fc build: number: 0 @@ -17,12 +17,14 @@ build: requirements: host: - pip - - python >=3.6 + - python >=3.7 run: - PyJWT >=2.0.0,<3.0.0 - - python >=3.6 + - python >=3.7 - pytz - requests >=2.0.0 + - aiohttp >=3.8.4 + - aiohttp-retry >=2.8.3 test: requires: @@ -34,8 +36,9 @@ test: - twilio.jwt - twilio.rest - twilio.twiml - commands: - - pip check + # Un-comment after https://github.com/twilio/twilio-python/issues/708 is resolved. + # commands: + # - pip check about: home: https://github.com/twilio/twilio-python/