Tianshou/tianshou/__init__.py
n+e b284ace102
type check in unit test (#200)
Fix #195: Add mypy test in .github/workflows/docs_and_lint.yml.

Also remove the out-of-the-date api
2020-09-13 19:31:50 +08:00

14 lines
194 B
Python

from tianshou import data, env, utils, policy, trainer, exploration
__version__ = "0.3.0rc0"
__all__ = [
"env",
"data",
"utils",
"policy",
"trainer",
"exploration",
]