Skip to content

Commit

Permalink
Updates for python 3.11.7 (#79)
Browse files Browse the repository at this point in the history
* Updates for python 3.11.7

* source virtualenv

-----------------------------

* put back on og tap-tester image
  • Loading branch information
leslievandemark authored Jan 24, 2024
1 parent 3026cbb commit cfbfbf8
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
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

0 comments on commit cfbfbf8

Please sign in to comment.