Skip to content

Commit f96f21e

Browse files
committed
remove tabulate
1 parent 0bcdb35 commit f96f21e

File tree

3 files changed

+4
-15
lines changed

3 files changed

+4
-15
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

orion/__main__.py

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55
import logging
66
import warnings
77

8-
import tabulate
9-
108
from orion.analysis import get_available_templates
119
from orion.benchmark import benchmark
1210
from 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

3829
def get_parser():
3930

setup.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717

1818

1919
install_requires = [
20-
'Keras>=3,<4',
2120
'tensorflow>=2.16.1,<2.20',
2221
'numpy>=1.23.5,<2',
2322
'pandas>=1.4.0,<3',
@@ -26,9 +25,8 @@
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',
@@ -45,8 +43,8 @@
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

0 commit comments

Comments
 (0)