Skip to content

Commit

Permalink
Feature/restrict pymssql (#18)
Browse files Browse the repository at this point in the history
* Pinning pymssql to version less than 2.2.7

* Bumping versions
  • Loading branch information
s7clarke10 committed Oct 24, 2023
1 parent 5f3d04f commit 46cd1d3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 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
where the SQL syntax is not compatible with Sybase. Need to investigate and raise a PR with pymssql,
for now restrict higher versions of pymssql.

## 1.0.10
* Resolving issue with pymssql - excluding version 2.2.8

Expand Down
4 changes: 2 additions & 2 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.10",
version="1.0.11",
description="Singer.io tap for extracting data from SQL Server - PipelineWise compatible",
author="Stitch",
url="https://github.com/s7clarke10/tap-sybase",
Expand All @@ -18,7 +18,7 @@
"pendulum>=1.2.0",
"singer-python==5.13.0",
# pymssql==2.2.8 broken: https://github.com/pymssql/pymssql/issues/833
"pymssql>=2.1.1,!=2.2.8",
"pymssql>=2.1.1,<=2.2.7",
"backoff==1.8.0",
],
entry_points="""
Expand Down

0 comments on commit 46cd1d3

Please sign in to comment.