I would like to ask if it is possible to build a conda env for fenics using an older version of fenics e.g. 2016.1.0. I have some code that I inherited and my pre-existing pipeline works pretty well for 2016.1.0, so if I could build that conda env on my local and work from there, that would be really helpful!
You also have to specify the version of the other packages you are working with, e.g. conda create -n fenics2016 -c conda-forge fenics=2016.1.0 python=3.5
Had the same problem with FEniCS 2017 and had to try out versions of every package I wanted to use. Hope that helps.