RatInABox-Lab / RatInABox

A python package for modelling locomotion in complex environments and spatially/velocity selective cell activity.
MIT License
172 stars 31 forks source link

Fix union to work with python versions <3.10 #81

Closed CYHSM closed 10 months ago

CYHSM commented 10 months ago

Python 3.10 allows you to use the | operator as a shorthand for Union but is not backward compatible. This PR changes the syntax back to use Union from the typing module.

Also adapts the setup file to include all python versions >3.7, which addresses https://github.com/TomGeorge1234/RatInABox/issues/79.