From 05d5ae8a664160e2056906b24bba44e80729b52a Mon Sep 17 00:00:00 2001 From: Khole Jones Date: Mon, 11 Dec 2023 17:59:21 +0000 Subject: [PATCH 1/2] Create V 0.5.16 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 941e974..c59b35f 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ def requirements_from_file(filename="requirements.txt"): setup( - version="0.5.15", + version="0.5.16", package_data={"data": ["*.json"]}, include_package_data=True, cmdclass={ From 7c08d155af2552d3ad0862095180e37cdb1242db Mon Sep 17 00:00:00 2001 From: Bernard Gorman Date: Sat, 13 Jan 2024 17:42:52 +0000 Subject: [PATCH 2/2] Add unasync rule to convert 'asycio.Lock' to 'threading.Lock' in session.py --- setup.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c59b35f..e3a4769 100644 --- a/setup.py +++ b/setup.py @@ -27,8 +27,16 @@ def requirements_from_file(filename="requirements.txt"): "/pyhiveapi/", additional_replacements={ "apyhiveapi": "pyhiveapi", + "asyncio": "threading", }, - ) + ), + unasync.Rule( + "/apyhiveapi/api/", + "/pyhiveapi/api/", + additional_replacements={ + "apyhiveapi": "pyhiveapi", + }, + ), ] ) },