File tree Expand file tree Collapse file tree 5 files changed +15
-20
lines changed Expand file tree Collapse file tree 5 files changed +15
-20
lines changed Original file line number Diff line number Diff line change @@ -7,19 +7,18 @@ channels:
7
7
dependencies :
8
8
- python=3.8
9
9
- pytorch>=1.9
10
- - pytorch-lightning>=1.5
11
- - torchmetrics>=0.7
12
- - pyg>=2.0
10
+ - pytorch-lightning>=1.5,<1.8
11
+ - torchmetrics>=0.7,<0.11
12
+ - pyg>=2.0.3
13
13
- pip
14
14
- pip :
15
15
- .
16
16
- einops
17
17
- hydra-core
18
18
- numpy
19
19
- omegaconf
20
- - pandas
20
+ - pandas>=1.4,<1.5
21
21
- scikit-learn
22
22
- scipy
23
23
- tables
24
- - test-tube
25
24
- tqdm
Original file line number Diff line number Diff line change 2
2
hydra-core
3
3
numpy
4
4
omegaconf
5
- pandas
6
- pytorch_lightning >= 1.5
5
+ pandas >= 1.4 , < 1.5
6
+ pytorch_lightning >= 1.5 , < 1.9
7
7
PyYAML
8
8
scikit_learn
9
9
scipy
10
10
tables
11
- test_tube
12
- torchmetrics >= 0.7
11
+ torchmetrics >= 0.7 ,< 0.11
13
12
tqdm
Original file line number Diff line number Diff line change 1
1
from setuptools import find_packages , setup
2
2
3
- __version__ = '0.1.1 '
3
+ __version__ = '0.9.0 '
4
4
URL = 'https://github.com/TorchSpatiotemporal/tsl'
5
5
6
6
with open ("README.md" , "r" ) as fh :
9
9
install_requires = [
10
10
'einops' ,
11
11
'numpy' ,
12
- 'pandas' ,
13
- 'pytorch_lightning>=1.5' ,
12
+ 'pandas>=1.4,<1.5 ' ,
13
+ 'pytorch_lightning>=1.5,<1.9 ' ,
14
14
'PyYAML' ,
15
15
'scikit_learn' ,
16
16
'scipy' ,
17
17
'tables' ,
18
- 'test_tube' ,
19
- 'torchmetrics>=0.7' ,
18
+ 'torchmetrics>=0.7,<0.11' ,
20
19
'tqdm' ,
21
20
]
22
21
32
31
33
32
full_install_requires = plot_requires + experiment_requires + [
34
33
'holidays' ,
35
- 'neptune-client>=0.14' ,
34
+ 'neptune-client>=0.14,<0.17 ' ,
36
35
'pytorch_fast_transformers'
37
36
]
38
37
Original file line number Diff line number Diff line change 5
5
data = LazyLoader ('data' , globals (), 'tsl.data' )
6
6
datasets = LazyLoader ('datasets' , globals (), 'tsl.datasets' )
7
7
nn = LazyLoader ('nn' , globals (), 'tsl.nn' )
8
- inference = LazyLoader ('inference ' , globals (), 'tsl.inference ' )
8
+ engines = LazyLoader ('engines ' , globals (), 'tsl.engines ' )
9
9
10
- __version__ = '0.1.1 '
10
+ __version__ = '0.9.0 '
11
11
12
12
epsilon = 5e-8
13
13
config = Config ()
20
20
'data' ,
21
21
'datasets' ,
22
22
'nn' ,
23
- 'inference '
23
+ 'engines '
24
24
]
Original file line number Diff line number Diff line change 1
- from .experiment import TslExperiment
2
1
from .io import (extract_zip ,
3
2
extract_tar ,
4
3
download_url ,
10
9
files_exist ,
11
10
precision_stoi ,
12
11
remove_files )
13
- from .parser_utils import ArgParser
You can’t perform that action at this time.
0 commit comments