Hello, I maintain a library which currently supports Pythons 3.6 to 3.9. We have a line in our requirements saying:
matplotlib==3.3.4
which is now bumped by pyup to 3.4.0 but ... matplotlib 3.4.0 dropped support for Python 3.6 so the requirements file is effectively rendered uninstallable on Python 3.6 and everything falls apart from there. This is becoming a bit of a habit.
In my mental Utopian image of pyup, I'd like to be able to able to specify:
Hello, I maintain a library which currently supports Pythons 3.6 to 3.9. We have a line in our requirements saying:
which is now bumped by pyup to 3.4.0 but ... matplotlib 3.4.0 dropped support for Python 3.6 so the requirements file is effectively rendered uninstallable on Python 3.6 and everything falls apart from there. This is becoming a bit of a habit.
In my mental Utopian image of pyup, I'd like to be able to able to specify:
And pyup will check the
python_requires
constraints of each new version it recommends before recommending it.C'est possible?