Skip to content

Commit

Permalink
FIX-#6429: exclude pymssql==2.2.8 from environments (#6430)
Browse files Browse the repository at this point in the history
Signed-off-by: Anatoly Myachev <[email protected]>
  • Loading branch information
anmyachev authored and RehanSD committed Aug 22, 2023
1 parent 7b23559 commit a014414
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion environment-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ dependencies:
- sqlalchemy>=1.4.0,<1.4.46
- pandas-gbq>=0.15.0
- pytables>=3.6.1
- pymssql>=2.1.5
# pymssql==2.2.8 broken: https://github.com/modin-project/modin/issues/6429
- pymssql>=2.1.5,!=2.2.8
- psycopg2>=2.8.6
- fastparquet>=0.6.3,<2023.1.0
- tqdm>=4.60.0
Expand Down
3 changes: 2 additions & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ matplotlib>=3.6.1
sqlalchemy>=1.4.0,<1.4.46
pandas-gbq>=0.15.0
tables>=3.6.1
pymssql>=2.1.5
# pymssql==2.2.8 broken: https://github.com/modin-project/modin/issues/6429
pymssql>=2.1.5,!=2.2.8
psycopg2>=2.8.6
connectorx>=0.2.6a4
fastparquet>=0.6.3,<2023.1.0
Expand Down
3 changes: 2 additions & 1 deletion requirements/env_unidist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ dependencies:
- sqlalchemy>=1.4.0,<1.4.46
- pandas-gbq>=0.15.0
- pytables>=3.6.1
- pymssql>=2.1.5
# pymssql==2.2.8 broken: https://github.com/modin-project/modin/issues/6429
- pymssql>=2.1.5,!=2.2.8
- psycopg2>=2.8.6
- fastparquet>=0.6.3,<2023.1.0
- tqdm>=4.60.0
Expand Down

0 comments on commit a014414

Please sign in to comment.