Should NamedTuple rely on dict being oredered?

Currently, NamedTuple relies on the fact that dict is ordered in Python 3.6. However, (if I remember correctly) it was decided at some point that the ordered nature of dict is a CPython implementation detail. The question is should we explicitly use an OrderedDict instead?