Skip to content

Commit

Permalink
Updates for python 3.11
Browse files Browse the repository at this point in the history
-----------------------------
  • Loading branch information
leslievandemark committed Jan 23, 2024
1 parent 6267465 commit ee5a075
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
9 changes: 4 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 2
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
- image: atmoz/sftp:debian
command: "test_user:Passw0rd!:::upload"
steps:
Expand All @@ -23,9 +23,8 @@ jobs:
name: 'Unit Tests'
command: |
source /usr/local/share/virtualenvs/tap-sftp/bin/activate
pip install nose coverage
nosetests --with-coverage --cover-erase --cover-package=tap_sftp --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 Expand Up @@ -55,4 +54,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

## 1.2.0
* Updates for python 3.11 [#46](https://github.com/singer-io/tap-sftp/pull/46)

## 1.1.2
* Request Timeout Implementation [#36](https://github.com/singer-io/tap-sftp/pull/36)

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

setup(
name="tap-sftp",
version="1.1.2",
version="1.2.0",
description="Singer.io tap for extracting data",
author="Stitch",
url="http://singer.io",
classifiers=["Programming Language :: Python :: 3 :: Only"],
py_modules=["tap_sftp"],
install_requires=[
"singer-python==5.12.1",
"singer-python==6.0.0",
'paramiko==2.6.0',
'backoff==1.8.0',
'backoff==2.2.1',
'singer-encodings==0.1.1',
'terminaltables==3.1.0',
],
extras_require={
'dev': [
'ipdb',
'pylint',
'nose'
'nose2'
],
'test': [
'paramiko==2.6.0'
Expand Down

0 comments on commit ee5a075

Please sign in to comment.