Is there a way to install an old version of a package with optional dependencies?
For example, I can pip install pandas[xml]
that would install the current pandas version with the xml extra dependencies.
Nonetheless, when I do pip install pandas==1.4.4[xml]
, the following error appears: ERROR: Extras after version '==1.4.4[xml]'.
From the archived documentation of pandas the [xml] extra dependencies already existed in version 1.4.4.