Skip to content

Commit aaaa6ab

Browse files
authored
Fix failures in docker tests with latest Pymssql and older python versions (#2162)
* tests: limit latest pymssql for python < 3.9 Limit to the latest release that ships wheels for older Pythons. * tests: remove python >= 3.6 requirements markers
1 parent 76b3143 commit aaaa6ab

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
elasticsearch>=7.0,<8.0
2-
aiohttp ; python_version >= '3.6'
2+
aiohttp
33
-r reqs-base.txt
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
elasticsearch>=8.0,<9.0
2-
aiohttp ; python_version >= '3.6'
2+
aiohttp
33
-r reqs-base.txt
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1-
cython ; python_version >= '3.6'
2-
pymssql
1+
cython
2+
pymssql ; python_version >= '3.9'
3+
pymssql==2.3.1 ; python_version < '3.9'
34
-r reqs-base.txt

0 commit comments

Comments
 (0)