Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates for python 3.11.7 #79

Merged
merged 3 commits into from
Jan 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@ jobs:
command: |
python3 -mvenv /usr/local/share/virtualenvs/tap-typeform
source /usr/local/share/virtualenvs/tap-typeform/bin/activate
pip install -U 'pip<19.2' 'setuptools<51.0.0'
pip install -U pip 'setuptools<51.0.0'
pip install .[dev]
- run:
when: always
name: 'Unit Tests'
command: |
source /usr/local/share/virtualenvs/tap-tester/bin/activate
pip install nose coverage parameterized
nosetests --with-coverage --cover-erase --cover-package=tap_typeform --cover-html-dir=htmlcov tests/unittests
coverage html
source /usr/local/share/virtualenvs/tap-typeform/bin/activate
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 Expand Up @@ -48,4 +48,4 @@ workflows:
- master
jobs:
- build:
context: circleci-user
context: circleci-user
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 2.4.0
* Updates for python 3.11 [#79](https://github.com/singer-io/tap-typeform/pull/79)

## 2.3.0
* Enable dev-mode and token chaining [#76](https://github.com/singer-io/tap-typeform/pull/76)

Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@

setup(
name="tap-typeform",
version="2.3.0",
version="2.4.0",
description="Singer.io tap for extracting data from the TypeForm Responses API",
author="bytcode.io",
url="http://singer.io",
classifiers=["Programming Language :: Python :: 3 :: Only"],
install_requires=[
"singer-python==5.13.0",
"singer-python==6.0.0",
"pendulum",
"ratelimit",
"backoff",
Expand All @@ -21,7 +21,7 @@
'dev': [
'pylint',
'ipdb',
'nose',
'nose2',
]
},
entry_points="""
Expand Down