BorisTheBrave / nice-hooks

Convenience functions for working with pytorch hooks.
MIT License
6 stars 0 forks source link

Typing requires Python 3.9 #2

Closed afspies closed 1 year ago

afspies commented 1 year ago

The use of typing such as dict[str, t.Tensor] requires python 3.9 to work. You might consider using Dict[str, Tensor] with e.g. jax-typing, or state Python $>=$ 3.9 as an official req?