Skip to content

Commit 5abc0a2

Browse files
authored
Merge pull request #4196 from janezd/pymssql-freeze
pymssql: Freeze to version <3.0
2 parents a567d98 + 56aa8e2 commit 5abc0a2

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.travis/install_mssql.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ sudo docker run -e 'ACCEPT_EULA=Y' -e 'SA_PASSWORD=YourStrong!Passw0rd' \
22
-p 1433:1433 -d microsoft/mssql-server-linux:2017-latest
33

44
export PYMSSQL_BUILD_WITH_BUNDLED_FREETDS=1
5-
pip install pymssql
5+
pip install "pymssql<3.0"
66

7-
export ORANGE_TEST_DB_URI="${ORANGE_TEST_DB_URI}|mssql://SA:YourStrong!Passw0rd@0.0.0.0:1433"
7+
export ORANGE_TEST_DB_URI="${ORANGE_TEST_DB_URI}|mssql://SA:YourStrong!Passw0rd@0.0.0.0:1433"

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ environment:
1717
PIP_DISABLE_PIP_VERSION_CHECK: 1
1818
BUILD_ENV: wheel==0.29.0 pip~=19.0
1919
# SIP 4.19.4+ with PyQt5==5.9.1+ segfault our tests (GH-2756)
20-
TEST_ENV: sip==4.19.6 PyQt5==5.9.2 numpy>=1.16.0 scipy~=1.0.0 scikit-learn pandas==0.21.1 pymssql
20+
TEST_ENV: sip==4.19.6 PyQt5==5.9.2 numpy>=1.16.0 scipy~=1.0.0 scikit-learn pandas==0.21.1 "pymssql<3.0"
2121
ORANGE_TEST_DB_URI: 'mssql://sa:Password12!@localhost:1433'
2222

2323
matrix:

requirements-sql.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
psycopg2
2-
pymssql
2+
pymssql<3.0

0 commit comments

Comments
 (0)