From a6b152faf08f8b6effb302a9305a752ba113a711 Mon Sep 17 00:00:00 2001 From: Maksym Ivannikov Date: Wed, 20 Nov 2024 13:11:17 +0200 Subject: [PATCH 1/2] CPL-17718 Update deps with same versions as in google ads tap Required to use in incremental --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 8d65238..be35ae8 100644 --- a/setup.py +++ b/setup.py @@ -9,9 +9,9 @@ classifiers=['Programming Language :: Python :: 3 :: Only'], py_modules=['tap_linkedin_ads'], install_requires=[ - 'backoff==1.8.0', - 'requests>=2.31.0', - 'singer-python==5.12.1' + 'singer-python@git+https://github.com/railsware/singer-python/@ea0489dcb73fcb19195eea50eeff9a13d6914e9a', + 'requests>=2.26.0', + 'backoff~=2.2.1', ], extras_require={ 'dev': [ From b2d73aae0dd0c58e1530a1cf87db6449ce831a6b Mon Sep 17 00:00:00 2001 From: Maksym Ivannikov Date: Thu, 21 Nov 2024 12:28:34 +0200 Subject: [PATCH 2/2] [CPL-17718] Change requests versions --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index be35ae8..f97b226 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ py_modules=['tap_linkedin_ads'], install_requires=[ 'singer-python@git+https://github.com/railsware/singer-python/@ea0489dcb73fcb19195eea50eeff9a13d6914e9a', - 'requests>=2.26.0', + 'requests>=2.31.0', 'backoff~=2.2.1', ], extras_require={