diff --git a/.circleci/config.yml b/.circleci/config.yml index 040010f..e0532ec 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -4,7 +4,7 @@ orbs: 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: @@ -14,14 +14,13 @@ jobs: source /usr/local/share/virtualenvs/tap-s3-csv/bin/activate pip install . pip install pylint - pylint tap_s3_csv -d duplicate-code,consider-using-f-string,logging-format-interpolation,missing-docstring,invalid-name,line-too-long,too-many-locals,too-few-public-methods,fixme,stop-iteration-return,broad-except,bare-except,unused-variable,unnecessary-comprehension,no-member,deprecated-method,protected-access + pylint tap_s3_csv -d missing-docstring,invalid-name,line-too-long,too-many-locals,too-few-public-methods,fixme,stop-iteration-return,broad-except,bare-except,unused-variable,unnecessary-comprehension,no-member,deprecated-method,protected-access,broad-exception-raised,consider-using-f-string - run: name: 'Unit Tests' command: | source /usr/local/share/virtualenvs/tap-s3-csv/bin/activate - pip install nose coverage parameterized - nosetests --with-coverage --cover-erase --cover-package=tap_s3_csv --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 384fb7a..4668f8c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 1.4.0 + * Updates for python 3.11 [#61](https://github.com/singer-io/tap-s3-csv/pull/61) + ## 1.3.7 * Remove Backoff for Access Denied errors * Add unitttest for access denied giveup diff --git a/setup.py b/setup.py index c951d34..dccbc60 100644 --- a/setup.py +++ b/setup.py @@ -3,17 +3,17 @@ from setuptools import setup setup(name='tap-s3-csv', - version='1.3.7', + version='1.4.0', description='Singer.io tap for extracting CSV files from S3', author='Stitch', url='https://singer.io', classifiers=['Programming Language :: Python :: 3 :: Only'], py_modules=['tap_s3_csv'], install_requires=[ - 'backoff==1.8.0', + 'backoff==2.2.1', 'boto3==1.24.18', 'singer-encodings==0.1.2', - 'singer-python==5.12.1', + 'singer-python==6.0.0', 'voluptuous==0.10.5' ], extras_require={