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 2, 2023
1 parent 52c569c commit 16b275b
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 62 deletions.
49 changes: 21 additions & 28 deletions environment-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,34 +27,27 @@ dependencies:
- xlrd
- matplotlib
- sqlalchemy>=1.4.0,<1.4.46
- pandas-gbq
- pytables
- msgpack-python
- psutil
- pytest>=6.0.1
- pytest-benchmark
- pytest-cov>=2.10.1
- pytest-xdist>=2.1.0
- packaging
- coverage
- pygithub
- rpyc==4.1.5
- cloudpickle
- boto3
- moto
- scikit-learn
- pymssql
- psycopg2
# Mypy 0.990 doesn't work: https://github.com/modin-project/modin/issues/5206
- mypy!=0.990
- pandas-stubs
- fastparquet<2023.1.0
# for release script
- pygit2
# TODO(https://github.com/modin-project/modin/issues/5194): Uncap xgboost
# when we use collective instead of rabit.
- xgboost>=1.7.1,<2.0.0
- tqdm
- pandas-gbq>=0.15.0
- pytables>=3.6.1
# 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

# dependencies for making release
- pygithub>=v1.58.0
- pygit2>=1.9.2

# test dependencies
- boto3>=1.26.0
- coverage>=7.1.0
- moto>=4.1.0
- pytest>=7.2.1
- pytest-benchmark>=4.0.0
- pytest-cov>=4.0.0
- pytest-xdist>=3.2.0

# code linters
- black
- flake8
Expand Down
21 changes: 10 additions & 11 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,15 @@ openpyxl
xlrd
matplotlib
sqlalchemy>=1.4.0,<1.4.46
msgpack
pandas_gbq
cloudpickle
rpyc==4.1.5
scikit-learn
git+https://github.com/airspeed-velocity/asv.git@ef016e233cb9a0b19d517135104f49e0a3c380e9
# TODO(https://github.com/modin-project/modin/issues/5194): Uncap xgboost
# when we use collective instead of rabit.
xgboost>=1.7.1,<2.0.0
tqdm
pandas-gbq>=0.15.0
tables>=3.6.1
# 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
flask-cors
tqdm>=4.60.0
# Latest modin-spreadsheet with widget fix
git+https://github.com/modin-project/modin-spreadsheet.git@49ffd89f683f54c311867d602c55443fb11bf2a5
pymssql
Expand All @@ -57,4 +56,4 @@ PyGithub
pygit2
moto
flask-cors
boto3
boto3
43 changes: 20 additions & 23 deletions requirements/env_unidist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,29 +19,26 @@ dependencies:
- xlrd
- matplotlib
- sqlalchemy>=1.4.0,<1.4.46
- pandas-gbq
- pytables
- msgpack-python
- psutil
- pytest>=6.0.1
- pytest-benchmark
- pytest-cov>=2.10.1
- pytest-xdist>=2.1.0
- packaging
- coverage
- pygithub
- rpyc==4.1.5
- cloudpickle
- boto3
- scikit-learn
- pymssql
- psycopg2
- mypy
- pandas-stubs
- fastparquet<2023.1.0
- tqdm
# for release script
- pygit2
- pandas-gbq>=0.15.0
- pytables>=3.6.1
# 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

# dependencies for making release
- pygithub>=v1.58.0
- pygit2>=1.9.2

# test dependencies
- boto3>=1.26.0
- coverage>=7.1.0
- moto>=4.1.0
- pytest>=7.2.1
- pytest-cov>=4.0.0
- pytest-xdist>=3.2.0

# code linters
- black
- flake8
Expand Down

0 comments on commit 16b275b

Please sign in to comment.