Skip to content

Commit

Permalink
updates for py 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
leslievandemark committed Jan 23, 2024
1 parent 3e07935 commit 09cac9e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
9 changes: 4 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 2
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
- add_ssh_keys
Expand All @@ -11,7 +11,7 @@ jobs:
command: |
python3 -mvenv /usr/local/share/virtualenvs/tap-linkedin-ads
source /usr/local/share/virtualenvs/tap-linkedin-ads/bin/activate
pip install -U 'pip<19.2' 'setuptools<51.0.0'
pip install -U pip 'setuptools<51.0.0'
pip install .[dev]
- run:
name: 'pylint'
Expand All @@ -27,9 +27,8 @@ jobs:
name: 'Unit Tests'
command: |
source /usr/local/share/virtualenvs/tap-linkedin-ads/bin/activate
pip install nose coverage parameterized
nosetests --with-coverage --cover-erase --cover-package=tap_linkedin_ads --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

## 2.2.0
* Updates to run on python 3.11 [#66](https://github.com/singer-io/tap-linkedin-ads/pull/66)

## 2.1.0
* Bump to API version `202302`
* Move and update `FIELDS_UNACCEPTED_BY_API`
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
from setuptools import setup, find_packages

setup(name='tap-linkedin-ads',
version='2.1.0',
version='2.2.0',
description='Singer.io tap for extracting data from the LinkedIn Marketing Ads API API 2.0',
author='[email protected]',
classifiers=['Programming Language :: Python :: 3 :: Only'],
py_modules=['tap_linkedin_ads'],
install_requires=[
'backoff==1.8.0',
'requests==2.22.0',
'singer-python==5.12.1'
'backoff==2.2.1',
'requests==2.31.0',
'singer-python==6.0.0'
],
extras_require={
'dev': [
Expand Down

0 comments on commit 09cac9e

Please sign in to comment.