Skip to content

Commit

Permalink
Upgrade python version to 3.11.7 (#237)
Browse files Browse the repository at this point in the history
* test tap-facebook on python 3.11

* version bump and changelog update

* standard image base

-----------------------------
  • Loading branch information
leslievandemark committed Jan 23, 2024
1 parent add18f1 commit 1482632
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
7 changes: 3 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
command: |
python3 -m venv /usr/local/share/virtualenvs/tap-facebook
source /usr/local/share/virtualenvs/tap-facebook/bin/activate
pip install 'pip==21.1.3'
pip install 'pip==23.3.2'
pip install 'setuptools==56.0.0'
pip install .[dev]
- slack/notify-on-failure:
Expand Down Expand Up @@ -55,9 +55,8 @@ jobs:
name: 'Run Unit Tests'
command: |
source /usr/local/share/virtualenvs/tap-facebook/bin/activate
pip install nose coverage
nosetests --with-coverage --cover-erase --cover-package=tap_facebook --cover-html-dir=htmlcov tests/unittests
coverage html
pip install nose2
nose2 -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.20.0
* Run on python 3.11.7 [#237](https://github.com/singer-io/tap-facebook/pull/237)

## 1.19.1
* Add retry logic for status code - 503 [#226](https://github.com/singer-io/tap-facebook/pull/226)

Expand Down
6 changes: 3 additions & 3 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-facebook',
version='1.19.1',
version='1.20.0',
description='Singer.io tap for extracting data from the Facebook Ads API',
author='Stitch',
url='https://singer.io',
classifiers=['Programming Language :: Python :: 3 :: Only'],
py_modules=['tap_facebook'],
install_requires=[
'attrs==17.3.0',
'backoff==1.8.0',
'backoff==2.2.1',
'pendulum==1.2.0',
'facebook_business==17.0.2',
'requests==2.20.0',
'singer-python==5.10.0',
'singer-python==6.0.0',
],
extras_require={
'dev': [
Expand Down

0 comments on commit 1482632

Please sign in to comment.