Closed MSeifert04 closed 6 years ago
py
https://pypi.python.org/pypi/py/1.4.34
Carbon
Maybe this one https://pypi.python.org/pypi/carbon/1.0.2 ? But not sure what it is for. I tried conda search Carbon -n py36 --use-local --names-only --reverse-dependency
but conda
can't even find it, whether I capitalize the "C" or not.
cycler
Is it related to #4644 ?
Just wanted to note that it's not necessarily out of date if the imported packages are dependencies of other that packages are explicitly imported. For example, py
is a dependency of pytest
, so there's no reason to make its dependency explicit in astropy
.
Yes, it was just a dump of all explicitly imported packages that aren't listed in setup.py
. I really didn't investigate much I just noticed that several of these aren't listed in pip_requirements_dev
or/and the narrative docs.
I really don't know if it's worth updating any of the files but I thought since I already scanned the source I post it here as issue.
See #7397. It was mostly based on the list above here, and the list we use on travis. As discussed above, I've not added the dependencies of dependencies, neither packages that are imported in order to provide support for their functionalities (e.g. ipython).
We currently have two places where we put the optional and dev dependencies. I just checked which packages are used inside astropy and both the pip-requirements files as well as the documentation (http://docs.astropy.org/en/latest/install.html) are a bit out of date.
This is the list of imported modules inside astropy (most but not all of them are already mentioned):
I didn't know if I should just go ahead and add the missing packages to those files or if I shouldn't. :)