From 40e035ff9b5e6d5035128926ac6a354e6bc0cad3 Mon Sep 17 00:00:00 2001 From: Leslie VanDeMark Date: Tue, 23 Jan 2024 16:42:43 +0000 Subject: [PATCH] Updates for python 3.11 --- .circleci/config.yml | 9 ++++----- CHANGELOG.md | 3 +++ setup.py | 6 +++--- 3 files changed, 10 insertions(+), 8 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index abfcc3b..a990baa 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -2,7 +2,7 @@ version: 2.1 jobs: build: docker: - - image: 218546966473.dkr.ecr.us-east-1.amazonaws.com/circle-ci:stitch-tap-tester + - image: 218546966473.dkr.ecr.us-east-1.amazonaws.com/circle-ci:stitch-tap-tester-3-11-dev steps: - checkout - run: @@ -10,15 +10,14 @@ jobs: command: | python3 -mvenv /usr/local/share/virtualenvs/tap-pipedrive source /usr/local/share/virtualenvs/tap-pipedrive/bin/activate - pip install -U 'pip<19.2' 'setuptools<51.0.0' + pip install -U pip 'setuptools<51.0.0' pip install .[dev] - run: name: 'Unit Tests' command: | source /usr/local/share/virtualenvs/tap-pipedrive/bin/activate - pip install nose coverage - nosetests --with-coverage --cover-erase --cover-package=tap_pipedrive --cover-html-dir=htmlcov tests/unittests - coverage html + pip install nose2 parameterized nose2[coverage_plugin]>=0.6.5 + nose2 --with-coverage -v -s tests/unittests - store_test_results: path: test_output/report.xml - store_artifacts: diff --git a/CHANGELOG.md b/CHANGELOG.md index e905784..5a22074 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +# 1.2.0 + * Updates for python 3.11 [#136](https://github.com/singer-io/tap-pipedrive/pull/136) + # 1.1.8 * Retries requests with 200 status and null bodies for dealsflow stream [#131](https://github.com/singer-io/tap-pipedrive/pull/131) diff --git a/setup.py b/setup.py index efb4fe9..a284f94 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup(name="tap-pipedrive", - version="1.1.8", + version="1.2.0", description="Singer.io tap for extracting data from the Pipedrive API", author="Stitch", author_email="dev@stitchdata.com", @@ -11,8 +11,8 @@ py_modules=["tap_pipedrive"], install_requires=[ "pendulum==2.1.2", - "requests==2.21.0", - "singer-python==5.12.1", + "requests==2.31.0", + "singer-python==6.0.0", ], entry_points=""" [console_scripts]