Skip to content

Commit

Permalink
test one python 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
leslievandemark committed Jan 18, 2024
1 parent e2936f1 commit c9c0103
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
7 changes: 3 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ orbs:
executors:
tap_tester:
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

jobs:
build:
Expand Down Expand Up @@ -71,9 +71,8 @@ jobs:
name: 'Unit Tests'
command: |
source /usr/local/share/virtualenvs/tap-stripe/bin/activate
pip install coverage parameterized
nosetests --with-coverage --cover-erase --cover-package=tap_stripe --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
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@

setup(
name="tap-stripe",
version="2.0.5",
version="2.1.0",
description="Singer.io tap for extracting data",
author="Stitch",
url="http://singer.io",
classifiers=["Programming Language :: Python :: 3 :: Only"],
py_modules=["tap_stripe"],
install_requires=[
"singer-python==5.5.1",
"singer-python==6.0.0",
"stripe==2.64.0",
],
extras_require={
Expand Down

0 comments on commit c9c0103

Please sign in to comment.