www/py-httpx-oauth: Update to 0.4.2

Changes: https://github.com/frankie567/httpx-oauth/releases/tag/v0.4.2

PR:	262627
This commit is contained in:
Goran Mekić 2022-03-17 19:00:42 -07:00 committed by Neel Chauhan
parent d8e7918a23
commit cd103f9fc5
3 changed files with 4 additions and 32 deletions

View file

@ -1,5 +1,5 @@
PORTNAME= httpx-oauth
DISTVERSION= 0.4.1
DISTVERSION= 0.4.2
CATEGORIES= www devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1643132368
SHA256 (httpx-oauth-0.4.1.tar.gz) = ee777ee8c33ab521b8bee26158bed1c5eb709034559bd53442509e736458ffee
SIZE (httpx-oauth-0.4.1.tar.gz) = 15272
TIMESTAMP = 1647541938
SHA256 (httpx-oauth-0.4.2.tar.gz) = a4edd403a14acf654fd129e5fa215a555359370a0b86e5c2167779f32823eee0
SIZE (httpx-oauth-0.4.2.tar.gz) = 15584

View file

@ -1,28 +0,0 @@
--- setup.py.orig 2022-01-25 17:47:55 UTC
+++ setup.py
@@ -0,0 +1,25 @@
+#!/usr/bin/env python
+# setup.py generated by flit for tools that don't yet use PEP 517
+
+from distutils.core import setup
+
+packages = \
+['httpx_oauth', 'httpx_oauth.clients', 'httpx_oauth.integrations']
+
+package_data = \
+{'': ['*']}
+
+install_requires = \
+['httpx >=0.18,<0.22', 'typing-extensions']
+
+setup(name='httpx-oauth',
+ version='0.4.1',
+ description='Async OAuth client using HTTPX.',
+ author='François Voron',
+ author_email='fvoron@gmail.com',
+ url='https://github.com/frankie567/httpx-oauth',
+ packages=packages,
+ package_data=package_data,
+ install_requires=install_requires,
+ python_requires='>=3.7',
+ )