Skip to content

Commit

Permalink
Updated dependencies and version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
marshka committed Nov 18, 2022
1 parent a65a8f9 commit 6335bb5
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 20 deletions.
9 changes: 4 additions & 5 deletions conda_env.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,18 @@ channels:
dependencies:
- python=3.8
- pytorch>=1.9
- pytorch-lightning>=1.5
- torchmetrics>=0.7
- pyg>=2.0
- pytorch-lightning>=1.5,<1.8
- torchmetrics>=0.7,<0.11
- pyg>=2.0.3
- pip
- pip:
- .
- einops
- hydra-core
- numpy
- omegaconf
- pandas
- pandas>=1.4,<1.5
- scikit-learn
- scipy
- tables
- test-tube
- tqdm
7 changes: 3 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,11 @@ einops
hydra-core
numpy
omegaconf
pandas
pytorch_lightning>=1.5
pandas>=1.4,<1.5
pytorch_lightning>=1.5,<1.9
PyYAML
scikit_learn
scipy
tables
test_tube
torchmetrics>=0.7
torchmetrics>=0.7,<0.11
tqdm
11 changes: 5 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import find_packages, setup

__version__ = '0.1.1'
__version__ = '0.9.0'
URL = 'https://github.com/TorchSpatiotemporal/tsl'

with open("README.md", "r") as fh:
Expand All @@ -9,14 +9,13 @@
install_requires = [
'einops',
'numpy',
'pandas',
'pytorch_lightning>=1.5',
'pandas>=1.4,<1.5',
'pytorch_lightning>=1.5,<1.9',
'PyYAML',
'scikit_learn',
'scipy',
'tables',
'test_tube',
'torchmetrics>=0.7',
'torchmetrics>=0.7,<0.11',
'tqdm',
]

Expand All @@ -32,7 +31,7 @@

full_install_requires = plot_requires + experiment_requires + [
'holidays',
'neptune-client>=0.14',
'neptune-client>=0.14,<0.17',
'pytorch_fast_transformers'
]

Expand Down
6 changes: 3 additions & 3 deletions tsl/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
data = LazyLoader('data', globals(), 'tsl.data')
datasets = LazyLoader('datasets', globals(), 'tsl.datasets')
nn = LazyLoader('nn', globals(), 'tsl.nn')
inference = LazyLoader('inference', globals(), 'tsl.inference')
engines = LazyLoader('engines', globals(), 'tsl.engines')

__version__ = '0.1.1'
__version__ = '0.9.0'

epsilon = 5e-8
config = Config()
Expand All @@ -20,5 +20,5 @@
'data',
'datasets',
'nn',
'inference'
'engines'
]
2 changes: 0 additions & 2 deletions tsl/utils/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from .experiment import TslExperiment
from .io import (extract_zip,
extract_tar,
download_url,
Expand All @@ -10,4 +9,3 @@
files_exist,
precision_stoi,
remove_files)
from .parser_utils import ArgParser

0 comments on commit 6335bb5

Please sign in to comment.