Skip to content

Commit

Permalink
Update requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
lixfz committed May 8, 2023
1 parent de6cf28 commit 6c535ef
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 30 deletions.
56 changes: 28 additions & 28 deletions .github/workflows/python-pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -q "pandas<2.0" "XlsxWriter<3.0.5" "dask<=2023.2.0" "distributed<=2023.2.0" -r requirements.txt -r requirements-zhcn.txt -r requirements-dask.txt -r requirements-extra.txt
pip install -q "pandas<2.0" "XlsxWriter<3.0.5" "dask<=2023.2.0" "distributed<=2023.2.0" -r requirements.txt -r requirements-zhcn.txt -r requirements-dask.txt -r requirements-fg.txt -r requirements-extra.txt
pip install -q pytest-cov==2.4.0 python-coveralls codacy-coverage
pip list
- name: Test with pytest
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
run: |
pytest --cov=hypernets --durations=30
test_without_daskml:
test_without_dask_ft:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand All @@ -109,29 +109,29 @@ jobs:
run: |
pytest --cov=hypernets --durations=30
test_without_geohash:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, ]
python-version: [3.7, 3.8]
# dask-version: [2021.7.2,]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
# # pip install -q dask==${{ matrix.dask-version }} distributed==${{ matrix.dask-version }} dask-ml "pandas<1.5.0"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -q "dask<=2023.2.0" "distributed<=2023.2.0" dask-ml "pandas<1.5.0"
pip install -q -r requirements.txt -r requirements-zhcn.txt "pandas<2.0" "scikit-learn<1.1.0" "XlsxWriter<3.0.5"
pip install -q pytest-cov==2.4.0 python-coveralls codacy-coverage
pip list
- name: Test with pytest
run: |
pytest --cov=hypernets --durations=30
#
# test_without_geohash:
# runs-on: ${{ matrix.os }}
# strategy:
# fail-fast: false
# matrix:
# os: [ubuntu-latest, ]
# python-version: [3.7, 3.8]
# # dask-version: [2021.7.2,]
# steps:
# - uses: actions/checkout@v2
# - name: Set up Python ${{ matrix.python-version }}
# uses: actions/setup-python@v2
# with:
# python-version: ${{ matrix.python-version }}
# # # pip install -q dask==${{ matrix.dask-version }} distributed==${{ matrix.dask-version }} dask-ml "pandas<1.5.0"
# - name: Install dependencies
# run: |
# python -m pip install --upgrade pip
# pip install -q "dask<=2023.2.0" "distributed<=2023.2.0" dask-ml "pandas<1.5.0"
# pip install -q -r requirements.txt -r requirements-zhcn.txt "pandas<2.0" "scikit-learn<1.1.0" "XlsxWriter<3.0.5"
# pip install -q pytest-cov==2.4.0 python-coveralls codacy-coverage
# pip list
# - name: Test with pytest
# run: |
# pytest --cov=hypernets --durations=30
1 change: 1 addition & 0 deletions requirements-fg.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
featuretools>=0.23.0
2 changes: 1 addition & 1 deletion requirements-notebook.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
jupyterlab
ipywidgets
jupyterlab_widgets
hboard-widget
hboard-widget
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ lightgbm>=2.2.0
fsspec>=0.8.0
ipython
traitlets
featuretools>=0.23.0
XlsxWriter>=3.0.2
psutil
joblib
Expand All @@ -15,3 +14,4 @@ paramiko
requests
tornado
prettytable
tqdm

0 comments on commit 6c535ef

Please sign in to comment.