You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 11, 2024. It is now read-only.
Matplotlib stopped supporting python3.5 in their new release (it's not a release just yet, but 3.1rc1). This causes failure on our CI here for the python3.5 build.
However this our own fault as the machinery here doesn't respect the python_requires in mpl's setup.py.
@tacaswell kindly digged up that the offending lines are likely
from setuptools import Distribution
dist = Distribution()
eggs = dist.fetch_build_eggs('sphinx-astropy')
I'll work this around for our CI to get the RC out sooner rather than later, but it would be great if we fix this before the actual release (and it may need to be backported, to LTS, too).
The text was updated successfully, but these errors were encountered:
Matplotlib stopped supporting python3.5 in their new release (it's not a release just yet, but 3.1rc1). This causes failure on our CI here for the python3.5 build.
However this our own fault as the machinery here doesn't respect the
python_requires
in mpl's setup.py.@tacaswell kindly digged up that the offending lines are likely
astropy-helpers/astropy_helpers/commands/build_sphinx.py
Lines 58 to 60 in b17db72
I'll work this around for our CI to get the RC out sooner rather than later, but it would be great if we fix this before the actual release (and it may need to be backported, to LTS, too).
The text was updated successfully, but these errors were encountered: