Skip to content

Commit

Permalink
Updates for python 3.11.7 (#57)
Browse files Browse the repository at this point in the history
* Updates for python 3.11.7

* put back on og tap-tester image

-----------------------------
  • Loading branch information
leslievandemark authored Jan 24, 2024
1 parent 0e79742 commit 683e28b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
5 changes: 2 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,23 @@

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",
classifiers=["Programming Language :: Python :: 3 :: Only"],
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="""
Expand Down

0 comments on commit 683e28b

Please sign in to comment.