Skip to content

Commit

Permalink
Updates to run on python 3.11 (#91)
Browse files Browse the repository at this point in the history
* Updates to run on python 3.11

* use correct tests folder

-----------------------------

* put back on og tap-tester image

-----------------------------
  • Loading branch information
leslievandemark committed Jan 24, 2024
1 parent 34a4ac8 commit 38f3f7d
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 @@ -26,9 +26,8 @@ jobs:
name: 'Unit Tests'
command: |
source ~/.virtualenvs/tap-marketo/bin/activate
pip install nose coverage
nosetests --with-coverage --cover-erase --cover-package=tap_marketo --cover-html-dir=htmlcov tests
coverage html
pip install nose2 parameterized nose2[coverage_plugin]>=0.6.5
nose2 --with-coverage -v -s tests
- 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

## 2.6.0
* Updates to run on python 3.11 [#91](https://github.com/singer-io/tap-marketo/pull/91)

## 2.5.2
* Fixed singer logging error in V2.5.1 [#86](https://github.com/singer-io/tap-marketo/pull/86)

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

setup(name='tap-marketo',
version='2.5.2',
version='2.6.0',
description='Singer.io tap for extracting data from the Marketo API',
author='Stitch',
url='http://singer.io',
classifiers=['Programming Language :: Python :: 3 :: Only'],
py_modules=['tap_marketo'],
install_requires=[
'singer-python==5.9.0',
'requests==2.20.0',
'singer-python==6.0.0',
'requests==2.31.0',
'pendulum==1.2.0',
'freezegun>=0.3.9',
'requests_mock>=1.3.0',
'backoff==1.8.0',
'backoff==2.2.1',
],
extras_require={
'dev': [
Expand Down

0 comments on commit 38f3f7d

Please sign in to comment.