pyccel / sympde

Symbolic calculus for partial differential equations (and variational forms)
http://sympde.readthedocs.io/
MIT License
20 stars 4 forks source link

Replace OrderedDict with dict. Remove yamlloader dependency #101

Closed anlavandier closed 2 years ago

anlavandier commented 2 years ago

As of Python 3.7, dict objects are now insertion-ordered. For this reason, we can replace all OrderedDict objects with standard dicts. Consequently, support for Python 3.6 and lower is stopped and the yamlloader package is not needed anymore.