From 748ae6141e16bdc508b56aadc53d8edc49ecbcdc Mon Sep 17 00:00:00 2001 From: Leslie VanDeMark Date: Tue, 23 Jan 2024 19:46:28 +0000 Subject: [PATCH] Updates for python 3.11 ----------------------------- --- .circleci/config.yml | 6 +++--- CHANGELOG.md | 3 +++ setup.py | 8 ++++---- 3 files changed, 10 insertions(+), 7 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index f8eab4d..e18548a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -2,7 +2,7 @@ version: 2 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: @@ -21,8 +21,8 @@ jobs: name: 'Unit Tests' command: | source /usr/local/share/virtualenvs/tap-intercom/bin/activate - nosetests --with-coverage --cover-erase --cover-package=tap_intercom --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 33f65fa..154047e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 2.1.0 + * Run on python 3.11 [#69](https://github.com/singer-io/tap-intercom/pull/69) + ## 2.0.2 * Retry on responses with no JSON [#66](https://github.com/singer-io/tap-intercom/pull/66) diff --git a/setup.py b/setup.py index 2412bb3..36b8051 100644 --- a/setup.py +++ b/setup.py @@ -3,15 +3,15 @@ from setuptools import setup, find_packages setup(name='tap-intercom', - version='2.0.2', + version='2.1.0', description='Singer.io tap for extracting data from the Intercom API', author='jeff.huth@bytecode.io', classifiers=['Programming Language :: Python :: 3 :: Only'], py_modules=['tap_intercom'], install_requires=[ - 'backoff==1.8.0', - 'requests==2.23.0', - 'singer-python==5.10.0' + 'backoff==2.2.1', + 'requests==2.31.0', + 'singer-python==6.0.0' ], entry_points=''' [console_scripts]