Skip to content

Commit

Permalink
Fix failures in docker tests with latest Pymssql and older python ver…
Browse files Browse the repository at this point in the history
…sions (#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
  • Loading branch information
xrmx authored Nov 26, 2024
1 parent 76b3143 commit aaaa6ab
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tests/requirements/reqs-elasticsearch-7.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
elasticsearch>=7.0,<8.0
aiohttp ; python_version >= '3.6'
aiohttp
-r reqs-base.txt
2 changes: 1 addition & 1 deletion tests/requirements/reqs-elasticsearch-8.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
elasticsearch>=8.0,<9.0
aiohttp ; python_version >= '3.6'
aiohttp
-r reqs-base.txt
5 changes: 3 additions & 2 deletions tests/requirements/reqs-pymssql-newest.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
cython ; python_version >= '3.6'
pymssql
cython
pymssql ; python_version >= '3.9'
pymssql==2.3.1 ; python_version < '3.9'
-r reqs-base.txt

0 comments on commit aaaa6ab

Please sign in to comment.