Skip to content

Commit

Permalink
Merge branch 'master' into TDL-26228
Browse files Browse the repository at this point in the history
  • Loading branch information
somethingmorerelevant authored Jan 30, 2025
2 parents 3688203 + 15b01e1 commit 121574f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
command: |
virtualenv -p python3 ~/.virtualenvs/tap-marketo
source ~/.virtualenvs/tap-marketo/bin/activate
pip install .
pip install .[test]
pip install pylint
- run:
name: 'Pylint'
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
## 2.7.0
* New Streams added (Describe Leads,Program Tags, Tag Types) [#95](https://github.com/singer-io/tap-marketo/pull/95)

## 2.6.2
* Move test dependencies to `extras_require` and pin them [#96](https://github.com/singer-io/tap-marketo/pull/96)

## 2.6.1
* Log Corona warning only if the leads and activities_* stream are selected [#94](https://github.com/singer-io/tap-marketo/pull/94)

Expand Down
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,15 @@
'singer-python==6.0.0',
'requests==2.31.0',
'pendulum==1.2.0',
'freezegun>=0.3.9',
'requests_mock>=1.3.0',
'backoff==2.2.1',
],
extras_require={
'dev': [
'ipdb==0.11'
'ipdb',
],
'test': [
'freezegun==1.5.1',
'requests_mock==1.12.1',
]
},
entry_points='''
Expand Down

0 comments on commit 121574f

Please sign in to comment.