Skip to content

Commit

Permalink
Patching tap-sybase with latest dependencies (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
s7clarke10 authored Oct 29, 2024
1 parent 46cd1d3 commit c71c20c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
# Changelog
## 1.0.12
* Patching tap-sybase with the latest dependencies
- attrs -> ">=24.2.0"
- backoff -> ">=1.8.0"
- pendulum -> ">=1.2.0"
- pymssql -> ">=2.1.4,!=2.2.8"
- singer-python -> Replaced with a patched version realit-singer-python = ">=5.0.0"

## 1.0.11
* Restricting the upper limit on pymssql to version 2.2.7 for now. There was a breaking change in 2.2.9
Expand Down
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

setup(
name="tap-sybase",
version="1.0.11",
version="1.0.12",
description="Singer.io tap for extracting data from SQL Server - PipelineWise compatible",
author="Stitch",
url="https://github.com/s7clarke10/tap-sybase",
Expand All @@ -14,12 +14,12 @@
],
py_modules=["tap_sybase"],
install_requires=[
"attrs==23.1.0",
"attrs>=24.2.0",
"pendulum>=1.2.0",
"singer-python==5.13.0",
"realit-singer-python>=5.0.0",
# pymssql==2.2.8 broken: https://github.com/pymssql/pymssql/issues/833
"pymssql>=2.1.1,<=2.2.7",
"backoff==1.8.0",
"pymssql>=2.1.4,!=2.2.8",
"backoff>=1.8.0",
],
entry_points="""
[console_scripts]
Expand Down

0 comments on commit c71c20c

Please sign in to comment.