File tree Expand file tree Collapse file tree 3 files changed +4
-15
lines changed
Expand file tree Collapse file tree 3 files changed +4
-15
lines changed Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ jobs:
115115 python-version : ${{ matrix.python-version }}
116116 - name : Install package and dependencies
117117 run : |
118- python -m pip install --upgrade pip
118+ python -m pip install --upgrade ' pip<=24.1'
119119 python -m pip install invoke .[test]
120120 - name : invoke minimum
121121 run : invoke minimum
Original file line number Diff line number Diff line change 55import logging
66import warnings
77
8- import tabulate
9-
108from orion .analysis import get_available_templates
119from orion .benchmark import benchmark
1210from orion .evaluation import CONTEXTUAL_METRICS as METRICS
@@ -27,13 +25,6 @@ def _evaluate(args):
2725 print ('Writing results in {}' .format (args .output ))
2826 scores .to_csv (args .output , index = False )
2927
30- print (tabulate .tabulate (
31- scores ,
32- showindex = False ,
33- tablefmt = 'github' ,
34- headers = scores .columns
35- ))
36-
3728
3829def get_parser ():
3930
Original file line number Diff line number Diff line change 1717
1818
1919install_requires = [
20- 'Keras>=3,<4' ,
2120 'tensorflow>=2.16.1,<2.20' ,
2221 'numpy>=1.23.5,<2' ,
2322 'pandas>=1.4.0,<3' ,
2625 'ml-stars>=0.2.2,<0.4' ,
2726 'scikit-learn>=1.1.0,<1.6' ,
2827 'scipy>=1.8.0,<2' ,
29- 'tabulate>=0.8.3,<0.9' ,
3028 'pyts>=0.11,<0.14' ,
31- 'torch>=1.9 .0,<2.6' ,
29+ 'torch>=1.12 .0,<2.6' ,
3230 'azure-cognitiveservices-anomalydetector>=0.3,<0.4' ,
3331 'xlsxwriter>=1.3.6,<1.4' ,
3432 'tqdm>=4.36.1' ,
4543 'smart_open' ,
4644
4745 #timesfm
48- "timesfm[torch]>=1.2.0,<1.5;python_version>=3.11,< 3.12" ,
49- "jax;python_version>=3.11,< 3.12" ,
46+ "timesfm[torch]>=1.2.0,<1.5;python_version>=' 3.11' and python_version<' 3.12' " ,
47+ "jax;python_version>=' 3.11' and python_version<' 3.12' " ,
5048
5149]
5250
You can’t perform that action at this time.
0 commit comments