Skip to content

Commit

Permalink
test on python 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
leslievandemark committed Jan 18, 2024
1 parent 5509e6d commit 200cdee
Show file tree
Hide file tree
Showing 2 changed files with 6 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 @@ -5,7 +5,7 @@ orbs:
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
- run:
Expand All @@ -28,9 +28,8 @@ jobs:
name: 'Unit Tests'
command: |
source /usr/local/share/virtualenvs/tap-google-sheets/bin/activate
pip install nose coverage
nosetests --with-coverage --cover-erase --cover-package=tap_google_sheets --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
6 changes: 3 additions & 3 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-google-sheets',
version='2.0.0',
version='2.1.0',
description='Singer.io tap for extracting data from the Google Sheets v4 API',
author='jeff.huth@bytecode.io',
classifiers=['Programming Language :: Python :: 3 :: Only'],
py_modules=['tap_google_sheets'],
install_requires=[
'backoff==1.8.0',
'backoff==2.2.1',
'requests==2.22.0',
'singer-python==5.12.2'
'singer-python==6.0.0'
],
extras_require={
'test': [
Expand Down

0 comments on commit 200cdee

Please sign in to comment.