If your spaces are gym.spaces objects, they should already have those methods. Is it possible you have defined your space as something else instead? E.g. a python Tuple instead of a gym spaces Tuple?
I believe for multiagent envs, this should now be a gym.spaces.Dict that maps from agent IDs to their respective spaces. (But not just a python dict, I think.)
Setting "disable_env_checking": True in your config might also do the trick, although I’m not 100% sure that there aren’t any other bits of code that use those methods.