Skip to content

Commit

Permalink
Merge pull request #3474 from pycaret/fix_sktime
Browse files Browse the repository at this point in the history
pinned sktime until issue is fixed
  • Loading branch information
Yard1 committed Apr 13, 2023
2 parents 13da308 + 61e3e20 commit 1f37fe8
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
run: |
export SKLEARN_ALLOW_DEPRECATED_SKLEARN_PACKAGE_INSTALL=True
python -m pip install -U pip
python -m pip install -U pytest codecov numpy
python -m pip install -U pytest numpy
pip install -e ".[full, test]"
if [ -f requirements-prophet.txt ]; then pip install -r requirements-prophet.txt; fi
Expand Down Expand Up @@ -120,7 +120,7 @@ jobs:
run: |
$env:SKLEARN_ALLOW_DEPRECATED_SKLEARN_PACKAGE_INSTALL = 'True'
python -m pip install -U pip
python -m pip install -U pytest codecov numpy
python -m pip install -U pytest numpy
pip install -e ".[full, test]"
pip install -r requirements-prophet.txt
Expand Down Expand Up @@ -155,7 +155,7 @@ jobs:
run: |
export SKLEARN_ALLOW_DEPRECATED_SKLEARN_PACKAGE_INSTALL=True
python -m pip install --upgrade pip
python -m pip install -U pytest codecov numpy
python -m pip install -U pytest numpy
pip install -e ".[full, test]"
- name: Python version and dependency list
run: |
Expand Down Expand Up @@ -187,7 +187,7 @@ jobs:
run: |
export SKLEARN_ALLOW_DEPRECATED_SKLEARN_PACKAGE_INSTALL=True
python -m pip install -U pip
python -m pip install -U pytest codecov numpy
python -m pip install -U pytest numpy
pip install -e ".[full, test]"
if [ -f requirements-prophet.txt ]; then pip install -r requirements-prophet.txt; fi
Expand Down Expand Up @@ -221,7 +221,7 @@ jobs:
run: |
export SKLEARN_ALLOW_DEPRECATED_SKLEARN_PACKAGE_INSTALL=True
python -m pip install -U pip
python -m pip install -U pytest codecov numpy
python -m pip install -U pytest numpy
pip install -e ".[full, test]"
if [ -f requirements-prophet.txt ]; then pip install -r requirements-prophet.txt; fi
Expand Down Expand Up @@ -255,7 +255,7 @@ jobs:
run: |
export SKLEARN_ALLOW_DEPRECATED_SKLEARN_PACKAGE_INSTALL=True
python -m pip install -U pip
python -m pip install -U pytest codecov numpy
python -m pip install -U pytest numpy
pip install -e ".[full, test]"
if [ -f requirements-prophet.txt ]; then pip install -r requirements-prophet.txt; fi
Expand Down
2 changes: 1 addition & 1 deletion requirements-test.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pytest>=7.0.1
moto>=3.0.7
codecov>=2.1.12
# codecov>=2.1.12 # https://github.com/home-assistant/core/issues/91283
fugue[dask]>=0.8.0
dash[testing]
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@ plotly-resampler>=0.8.3.1

# Time-series
statsmodels>=0.12.1
sktime>=0.16.1
sktime>=0.16.1,<=0.17.0 # Limited until this is fixed: https://github.com/sktime/sktime/issues/4468
tbats>=1.1.0
pmdarima>=1.8.0,!=1.8.1,<3.0.0 # Matches sktime

0 comments on commit 1f37fe8

Please sign in to comment.