File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 23
23
python-version : ' 3.9'
24
24
- name : Install dependencies
25
25
run : |
26
+ sudo apt-get update -y
27
+ sudo apt-get install openjdk-11-jre-headless pandoc --fix-missing
26
28
python -m pip install --upgrade pip setuptools wheel
27
- sudo apt-get install openjdk-11-jdk
28
- sudo apt-get install pandoc
29
29
- name : Build Sphinx docs
30
30
run : |
31
31
docs/build_docs.sh
Original file line number Diff line number Diff line change 24
24
25
25
- name : Install Merlion
26
26
run : |
27
+ sudo apt-get update -y
28
+ sudo apt-get install bc openjdk-11-jre-headless -y --fix-missing
27
29
python -m pip install --upgrade pip setuptools wheel build
28
30
python -m pip install pytest coverage
29
- sudo apt-get install bc openjdk-11-jdk
30
31
python -m build
31
32
for f in dist/*.whl; do pip install $f[all]; done
32
33
pip install -e ts_datasets/
Original file line number Diff line number Diff line change @@ -207,7 +207,7 @@ def forecast(
207
207
val_prev ,
208
208
error = self .error ,
209
209
trend = self .trend ,
210
- seasonal = self .seasonal ,
210
+ seasonal = None if self . seasonal_periods is None else self .seasonal ,
211
211
damped_trend = self .damped_trend ,
212
212
seasonal_periods = self .seasonal_periods ,
213
213
)
You can’t perform that action at this time.
0 commit comments