Skip to content

Commit

Permalink
Update to python 3.11 (#94)
Browse files Browse the repository at this point in the history
* test on python 3.11

* changelog update and requests bump

* keep on standard base image [skip ci]

-----------------------------
  • Loading branch information
leslievandemark authored Jan 23, 2024
1 parent 5509e6d commit a958361
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 @@ -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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 2.1.0
* Updates to run on python 3.11.7 [#94](https://github.com/singer-io/tap-google-sheets/pull/94)

## 2.0.0
* Google Sheets will now support shared drives [#80](https://github.com/singer-io/tap-google-sheets/pull/80)
* Non-boolean values in boolean columns will fallback to string [#83](https://github.com/singer-io/tap-google-sheets/pull/83)
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-google-sheets',
version='2.0.0',
version='2.1.0',
description='Singer.io tap for extracting data from the Google Sheets v4 API',
author='[email protected]',
classifiers=['Programming Language :: Python :: 3 :: Only'],
py_modules=['tap_google_sheets'],
install_requires=[
'backoff==1.8.0',
'requests==2.22.0',
'singer-python==5.12.2'
'backoff==2.2.1',
'requests==2.31.0',
'singer-python==6.0.0'
],
extras_require={
'test': [
Expand Down

0 comments on commit a958361

Please sign in to comment.