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 9916eba..314fd86 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog + +## 2.2.0 + * Run on python 3.11 [#69](https://github.com/singer-io/tap-intercom/pull/69) + ## 2.1.1 * Bump requests from 2.23.0 to 2.32.3 [#62](https://github.com/singer-io/tap-intercom/pull/62) diff --git a/setup.py b/setup.py index f0e96f3..a2a8815 100644 --- a/setup.py +++ b/setup.py @@ -3,15 +3,15 @@ from setuptools import setup, find_packages setup(name='tap-intercom', - version='2.1.1', + version='2.2.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', + 'backoff==2.2.1', 'requests==2.32.3', - 'singer-python==5.10.0' + 'singer-python==6.0.0' ], entry_points=''' [console_scripts]