diff --git a/.circleci/config.yml b/.circleci/config.yml index b9302ea..421818b 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -27,9 +27,8 @@ jobs: name: 'Unit Tests' command: | source /usr/local/share/virtualenvs/tap-dynamodb/bin/activate - pip install nose coverage - nosetests --with-coverage --cover-erase --cover-package=tap_dynamodb --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 c403569..f3f6c80 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 1.3.0 + * Updates to run on python 3.11.7 [#57](https://github.com/singer-io/tap-dynamodb/pull/57) + ## 1.2.3 * Fix error handling for log-based setup [#50](https://github.com/singer-io/tap-dynamodb/pull/50) diff --git a/setup.py b/setup.py index 80b1818..7971d88 100755 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ setup( name="tap-dynamodb", - version="1.2.3", + version="1.3.0", description="Singer.io tap for extracting data", author="Stitch", url="http://singer.io", @@ -11,15 +11,15 @@ py_modules=["tap_dynamodb"], install_requires=[ 'boto3==1.14.9', - "singer-python==5.9.0", + "singer-python==6.0.0", 'terminaltables==3.1.0', - 'backoff==1.8.0', + 'backoff==2.2.1', ], extras_require={ 'dev': [ 'ipdb', 'pylint', - 'nose' + 'nose2' ] }, entry_points="""